-
Posts
1,388 -
Joined
-
Last visited
-
Days Won
14
Everything posted by +Source|>
-
ابي اشفر الملف اللي فيه bindKey والملف اللي فيه kkey مب مشفر عشان اللي يبي يغير فتح اللوحه
-
bindKey( kkey, "down", function() if guiGetVisible( wnd ) then guiSetVisible( wnd, false ) showCursor( false ) else guiSetVisible( wnd, true ) showCursor( true ) end end ) اللي فوق ملف كلنت اللي تحت ملف كلنت اخر kkey = "F10" واضحه؟
-
جيب مقطع الصوت وحطه بملف المود وعرفه بالميتا الكود function wasted () local sound = playSound("sounds/wasted.mp3") setSoundVolume(sound, 0.5) end addEventHandler("onClientPlayerWasted", localPlayer, wasted) مثال من الويكي
-
انا لما بدأت برمجه جيت هذا الموقع وصراحه افدتوني كثير + انا تعلمت من اخذ الكود جاهز منكم واحاول احفظه واحفظ الاكواد ووش وظيفتها واحاول اكتبه لحالي 50 مره لين اتعلمه وكل واحد وطريقته في التعلم
-
function wepons () for i, v in ipairs ( getElementsByType('player')) do local we = getPedWeapon( v ) if we == data['ID'] then return end end end شكلي جبت العيد صح
-
شكرا اشتغل ممكن طلب اخر if ( getPedWeapon( source ) == data['ID'] ) then outputChatBox( " لديك هذا السلاح بالفعل ", source, 0, 0, 0, true ) return end ما اشتغلت
-
لما احدد عالسلاح واضغط شراء ما يصير شي
-
ما يشتغل --server addEvent("weapon", true) addEventHandler("weapon", root, function( action, ID, ammo ) if ( action == "wpp" ) then if tonumber( getPlayerMoney ( source ) ) >= tonumber( mm ) then takePlayerMoney( source, tonumber ( mm ) ) giveWeapon( source, ID, ammo, true ) else outputChatBox( " #2B60DE# [ JIZ Shop ] #ff0000 أنت لا تملك مـآل كـافي ", source, 0, 0, 0, true ) end end end ) local wep = { -- { Weapon / ID / Ammo / Money } -- {"M4", "31", "1000", 11}, {"Minigun", "38", "1000", 11}, } function refreesh () guiGridListClear( wpgrd ) for i, v in ipairs ( wep ) do local rowwp = guiGridListAddRow( wpgrd ) guiGridListSetItemText( wpgrd, rowwp, 1, tostring( v[1] ), false, false ) guiGridListSetItemData( wpgrd, rowwp, 1,{ ID = v[2], ammo = v[3], mm = v[4] } ) end end addEventHandler("onClientGUIClick", wshroot, function() local ss = guiGridListGetSelectedItem( wpgrd ) local tt = guiGridListGetItemText( wpgrd, ss, 1 ) local dd = guiGridListGetItemData( wpgrd, ss, 1 ) local nn = guiGridListGetItemText( wpgrd, guiGridListGetSelectedItem ( wpgrd ), 1 ) if ( source == GUIEditor.button[1] ) then if ( ss ~= -1 ) then triggerServerEvent ( "weapon" , localPlayer , localPlayer, "wpp", ss, dd, mm ) else outputChatBox( " #2B60DE# [ JIZ Shop ] #ff0000 الرجاء اختيار سلاح لشرآئه ", 0, 0, 0, true ) end end end )
-
addEventHandler("onClientGUIClick", root, function() if source == button then playSoundFrontEnd( 45 ) -- رقم صوت اللي تبيه end end )
-
جرب ديي function a () window = guiCreateWindow(125, 59, 368, 321, "", false) guiWindowSetSizable(window, false) guiSetVisible(window, false) Player = guiCreateGridList(9, 22, 87, 289, false, window) colmun = guiGridListAddColumn(Player, "Players", 0.9) Kill = guiCreateButton(109, 77, 243, 35, "Kill Player", false, window) if colmun then for id, playeritem in ipairs(getElementsByType("player")) do row = guiGridListAddRow ( Player) guiGridListSetItemText ( Player, row, colmun , getPlayerName (playeritem), false,false ) end end end function as () if guiGetVisible ( window ) then guiSetVisible ( window, false ) showCursor(false) guiSetInputEnabled(false) else guiSetVisible ( window, true ) showCursor(true) guiSetInputEnabled(true) end end bindKey("F6", "down", as) addEventHandler ('onClientGUIClick', root, function ( ) if source == Kill then if (guiGridListGetSelectedItem(Player) ~= -1 ) then Player1 = guiGridListGetItemText (Player, guiGridListGetSelectedItem(Player),1) triggerServerEvent('Kill',localPlayer,Player1) end end end ) addEventHandler ('onClientGUIClick', root, function ( ) if source == Kill then if (guiGridListGetSelectedItem(Player) ~= -1 ) then Player1 = guiGridListGetItemText (Player, guiGridListGetSelectedItem(Player),1) triggerServerEvent('Kill',localPlayer,Player1) end end end )
-
اول طلب كود تسجيل الدخول التلقائي اول مره يسجل بعدها يسجل تلقائي الطلب 2 وش الخطأ هنا؟؟؟؟؟ -- --server addEvent("weapon", true) addEventHandler("weapon", root, function( action, ID, ammo ) if ( action == "wpp" ) then if tonumber( getPlayerMoney ( source ) ) >= tonumber( mm ) then takePlayerMoney( source, tonumber ( mm ) ) giveWeapon( source, ID, ammo, true ) else outputChatBox( " #AA0000[ WzArH Weapons ] #ff0000 أنت لا تملك مـآل كـافي ", 0, 0, 0, true ) end end end ) --client local wep = { -- { Weapon / ID / Ammo / Money } -- {"M4", "31", "1000", 11}, {"Minigun", "38", "1000", 11}, } function refreesh () guiGridListClear( wpgrd ) for i, v in ipairs ( wep ) do local rowwp = guiGridListAddRow( wpgrd ) guiGridListSetItemText( wpgrd, rowwp, 1, tostring( v[1] ), false, false ) guiGridListSetItemData( wpgrd, rowwp, 1,{ ID = v[2], ammo = v[3], mm = v[4] } ) end end addEventHandler("onClientGUIClick", wshroot, function() local ss = guiGridListGetSelectedItem( wpgrd ) local tt = guiGridListGetItemText( wpgrd, ss, 1 ) if ( source == GUIEditor.button[1] ) then if ( ss ~= -1 ) then triggerServerEvent ( "weapon" , localPlayer , localPlayer, "wpp" ) else outputChatBox( " #AA0000[ WzArH Weapons ] الرجاء اختيار سلاح لشرآئه ", 0, 0, 0, true ) end end end )
-
يالطيب ابدا بكربتات بسيطه فاصعب فاصعب فاصعببب؟؟؟ وتتعلم ان شاء الله
-
شلون ما ياخذ دم الا لما يموت
-
GUIEditor = { gridlist = {}, window = {}, button = {} } GUIEditor.window[1] = guiCreateWindow(558, 182, 264, 450, "::|[Vehicles]|::", false) guiWindowSetSizable(GUIEditor.window[1], false) guiSetAlpha(GUIEditor.window[1], 1.00) guiSetVisible( GUIEditor.window[1], false ) guiSetProperty(GUIEditor.window[1], "CaptionColour", "FF0FB4EA") GUIEditor.gridlist[1] = guiCreateGridList(9, 24, 243, 367, false, GUIEditor.window[1]) guiGridListAddColumn(GUIEditor.gridlist[1], "#", 0.1) guiGridListAddColumn(GUIEditor.gridlist[1], "Vehicles", 0.83) GUIEditor.button[1] = guiCreateButton(9, 401, 112, 35, "Use", false, GUIEditor.window[1]) guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFEBD40D") GUIEditor.button[2] = guiCreateButton(140, 401, 112, 35, "Close", false, GUIEditor.window[1]) guiSetProperty(GUIEditor.button[2], "NormalTextColour", "FFDE1C77") local Markers = { -- الماركرات {-711.00000,957.00000,12.38227}, {-710.27747,963.82135,12.40817}, {-715.90405,958.53094,12.19386}, } for i,M in ipairs(Markers) do local marker = createMarker ( M[1], M[2], M[3] -1 , "cylinder", 1.5, 155, 0, 0 ) end wndroot = getResourceRootElement() addEventHandler("onClientMarkerHit", root, function(plr) if plr == localPlayer then guiSetVisible(GUIEditor.window[1], true) showCursor(true) end end ) addEventHandler("onClientGUIClick", wndroot, function() if ( source == GUIEditor.button[2] ) then guiSetVisible( GUIEditor.window[1], false ) showCursor( false ) end end )
-
اهاا يعني لو حطيت كولمنين اكتب 2
-
زيي زيك مددري احطه وحلاص ضض واذا ما حطيته ما يشتغل