Jump to content

jaberxpro

Members
  • Posts

    109
  • Joined

  • Last visited

Everything posted by jaberxpro

  1. لو خيروك بين تمتلك لعبة اشهر من MTA او تصير مبرمجMta مشهور بين العرب والاجانب
  2. اولاً لا تقول صممت واذكر اسم صاحب المود ------ ثانياًً عشان تسوي ضغط رقم 1 تتصلح او 2 ... الخ استخدم الفنكشن هذا: bindKey صممت اللوحة واستخدمت اكواد من مود اخر
  3. اصير صاحب شركة ابل لو خيروك تصير مزارع او راعي غنم
  4. روح للمدرسة او سافر لفرنسا
  5. لو خيروك بين اقوى لاب توب او اقوى تلفاز ؟
  6. المود كان غير مشفر استخدمت اكواد سيرفر حتى اخلص الشوب
  7. السلام عليكم ورحمة الله وبركاته صممت شوب ريس ابي اخلي الشوب عند ضغط رقم 1 تتصلح السيار رقم 2 نيترو رقم 3 انقلاب السيارة الاكواد 1-كلينت --[[------------------------------------------------- Notes: > This code is using a relative image filepath. This will only work as long as the location it is from always exists, and the resource it is part of is running. To ensure it does not break, it is highly encouraged to move images into your local resource and reference them there. --]]------------------------------------------------- GUIEditor = { button = {}, window = {}, staticimage = {}, label = {} } addEventHandler("onClientResourceStart", resourceRoot, function() GUIEditor.window[1] = guiCreateWindow(166, 70, 557, 426, "X[shop Race]X", false) guiWindowSetSizable(GUIEditor.window[1], false) guiSetAlpha(GUIEditor.window[1], 1.00) GUIEditor.label[1] = guiCreateLabel(476, 403, 77, 18, "By ; ja[b]er", false, GUIEditor.window[1]) GUIEditor.button[1] = guiCreateButton(10, 299, 168, 65, "Reapair", false, GUIEditor.window[1]) GUIEditor.button[2] = guiCreateButton(379, 299, 168, 65, "Flip", false, GUIEditor.window[1]) GUIEditor.button[3] = guiCreateButton(197, 299, 167, 65, "Nitro", false, GUIEditor.window[1]) GUIEditor.staticimage[1] = guiCreateStaticImage(14, 192, 164, 107, "repair1.png", false, GUIEditor.window[1]) GUIEditor.staticimage[2] = guiCreateStaticImage(197, 190, 166, 109, "n1.png", false, GUIEditor.window[1]) GUIEditor.staticimage[3] = guiCreateStaticImage(380, 191, 167, 108, "flip1.png", false, GUIEditor.window[1]) GUIEditor.label[2] = guiCreateLabel(14, 156, 533, 15, "____________________________________________________________________________", false, GUIEditor.window[1]) GUIEditor.label[3] = guiCreateLabel(123, 37, 323, 46, "Welcome To Server", false, GUIEditor.window[1]) guiSetFont(GUIEditor.label[3], "sa-gothic") guiLabelSetColor(GUIEditor.label[3], 217, 223, 31) GUIEditor.label[4] = guiCreateLabel(160, 110, 231, 36, "New Shop By ja[b]er", false, GUIEditor.window[1]) guiSetFont(GUIEditor.label[4], "sa-header") guiLabelSetColor(GUIEditor.label[4], 253, 0, 0) GUIEditor.button[4] = guiCreateButton(499, 24, 42, 27, "X", false, GUIEditor.window[1]) guiSetProperty(GUIEditor.button[4], "NormalTextColour", "FFFD0000") end ) function OpenWin() if guiGetVisible ( GUIEditor.window[1] ) then guiSetVisible ( GUIEditor.window[1], false ) showCursor(false) guiSetInputEnabled(false) else guiSetVisible ( GUIEditor.window[1], true ) showCursor(true) guiSetInputEnabled(true) end end bindKey("F1", "down", OpenWin) addEventHandler ("onClientGUIClick", root, function() if (source == GUIEditor.button[4]) then guiSetVisible( GUIEditor.window[1], false ) showCursor(false) guiSetInputEnabled(false) end end ) addEventHandler ("onClientGUIClick", getRootElement(), function(button, state, absoluteX, absoluteY) if ( source == GUIEditor.button[2] ) then triggerServerEvent("buyFlip",getLocalPlayer()) end end ) addEventHandler ("onClientGUIClick", getRootElement(), function(button, state, absoluteX, absoluteY) if ( source == GUIEditor.button[1] ) then triggerServerEvent("buyRepair",getLocalPlayer()) end end ) addEventHandler ("onClientGUIClick", getRootElement(), function(button, state, absoluteX, absoluteY) if ( source == GUIEditor.button[3] ) then triggerServerEvent("buyNitro",getLocalPlayer()) end end ) 2-سيرفر local rootElement = getRootElement() local root = getRootElement() rRoot = getResourceRootElement(getThisResource()) function qq() local playername = getPlayerName ( source ) if isPedInVehicle(source) then if ( getPlayerMoney (source) >= 0) then takePlayerMoney(source, 0) addVehicleUpgrade(getPedOccupiedVehicle(source),1010) outputChatBox("#3300FF* #000000[ #0000ff"..playername.." #000000] #007fffHas Bought #000000[ #ffff00Nitro #000000]", root, 255, 255, 255, true) else outputChatBox("#3300FF* You Dont Have #000000[ #f000002000$ #000000]", source, 255, 255, 255, true) end else outputChatBox("You aren't in vehicle!", source, 255,0,0,true) end end addEvent("buyNitro", true) addEventHandler( "buyNitro", getRootElement(), qq ) function fix() local playername = getPlayerName ( source ) if isPedInVehicle(source) then if ( getPlayerMoney (source) >= 0 ) then takePlayerMoney(source, 0) fixVehicle(getPedOccupiedVehicle(source)) outputChatBox("#3300FF* #000000[ #0000ff"..playername.." #000000] #007fffHas Bought #000000[ #ffff00Repair #000000]", source, 255,255,255,true) else outputChatBox("#3300FF* You Dont Have #000000[ #f000002100$ #000000]", source, 255, 255, 255, true) end else outputChatBox("You aren't in vehicle!", player, 255,0,0,true) end end addEvent("buyRepair", true) addEventHandler( "buyRepair",getRootElement(),fix ) function flip() local playername = getPlayerName ( source ) if isPedInVehicle(source) then if ( getPlayerMoney (source) >= 0 ) then takePlayerMoney(source, 0) localVehicle = getPedOccupiedVehicle(source) if getVehicleController(localVehicle) == source then local l_1_1, l_1_2, l_1_3 = getElementRotation(localVehicle) setElementRotation(localVehicle, 0, 0, l_1_1 > 90 and l_1_1 < 270 and l_1_3 + 180 or l_1_3) outputChatBox("#3300FF* #000000[ #0000ff"..playername .." #000000] #007fffHas Bought #000000[ #ffff00Flip #000000]", source, 255,255,255,true) else outputChatBox("#3300FF* You Dont Have #000000[ #f000001500$ #000000]", source, 255, 255, 255, true) end else outputChatBox("#000000[ #FF0000You aren't in vehicle #000000]", player, 255,0,0,true) end end end addEvent("buyFlip", true) addEventHandler( "buyFlip",getRootElement(),flip )
  8. تصميم رائع وغير مقلد متل بااقي السيرفرات
  9. --كلينت Schat = false GUIEditor = { button = {}, label = {} } addEventHandler ( "onClientResourceStart", resourceRoot, function ( ) wnd = guiCreateWindow(129, 69, 610, 421, "لوحة الاعب\Player Panel ", false) guiWindowSetSizable(wnd, false) guiSetAlpha(wnd, 1.00) guiSetVisible ( wnd, false ) GUIEditor.button[1] = guiCreateButton(10, 39, 189, 80, "انتحار", false, wnd) guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFE91414") GUIEditor.button[2] = guiCreateButton(401, 39, 189, 80, "ارسال شكوى", false, wnd) guiSetProperty(GUIEditor.button[2], "NormalTextColour", "FF20DCB6") GUIEditor.button[3] = guiCreateButton(401, 310, 189, 80, "درع", false, wnd) guiSetProperty(GUIEditor.button[3], "NormalTextColour", "FFB545B1") GUIEditor.button[4] = guiCreateButton(401, 184, 189, 80, "دم", false, wnd) guiSetProperty(GUIEditor.button[4], "NormalTextColour", "FFD69625") GUIEditor.button[5] = guiCreateButton(10, 184, 189, 80, "قطع راس الاعب", false, wnd) guiSetProperty(GUIEditor.button[5], "NormalTextColour", "FF3DBF3A") GUIEditor.button[6] = guiCreateButton(10, 310, 189, 80, "اخفاء الشات", false, wnd) guiSetProperty(GUIEditor.button[6], "NormalTextColour", "FF1948DF") GUIEditor.label[1] = guiCreateLabel(495, 397, 100, 24, "by ja[b]er[X]Pro", false, wnd) end ) bindKey( "F5", "down", function ( ) guiSetVisible( wnd, not guiGetVisible( wnd ) ) showCursor( guiGetVisible ( wnd ) ) end ) addEventHandler ( "onClientGUIClick", resourceRoot, function ( ) if ( source == GUIEditor.button[1] ) then triggerServerEvent("kill", localPlayer) elseif ( source == GUIEditor.button[2] ) then executeCommandHandler( "report" ) elseif ( source == GUIEditor.button[5] ) then triggerServerEvent( "Pro", localPlayer ) elseif ( source == GUIEditor.button[3] ) then triggerServerEvent ( "GiveIi", localPlayer ) elseif ( source == GUIEditor.button[4] ) then triggerServerEvent ( "GiveHel", localPlayer ) elseif ( source == GUIEditor.button[6] ) then if ( Schat == false ) then showChat ( false ) Schat = true else showChat ( true ) Schat = false end end end ) --سيرفر addEvent ( "GiveIi", true ) addEvent ( "Pro", true ) addEvent ( "kill", true ) addEvent ( "GiveHel", true ) addEventHandler( "kill", root, function ( ) killPed ( source ) end ) addEventHandler("Pro", root, function ( ) if ( isPedHeadless ( source ) ) then setPedHeadless ( source, false ) else setPedHeadless ( source, true ) end end ) addEventHandler ( "GiveIi", resourceRoot, function ( ) setPedArmor ( source, 100 ) end ) addEventHandler ( "GiveHel", resourceRoot, function ( ) setElementHealth ( source, 100 ) end )
  10. الان الدم+الدرع ما تشتغل
  11. شكرا لك بقي الدم ما يعبي
  12. ما في زر يشتغل الان واللوحة تيجي وما تروح
  13. سويت اللوحة وخلصت لك بها عدة مشاكل اللوحة تشتغل وتيجي امامي بالشات وما تروح والدرع ما شغال اكواد كلينت GUIEditor_TabPanel = {} GUIEditor_Tab = {} GUIEditor_Button = {} GUIEditor_Memo = {} GUIEditor_Label = {} GUIEditor = { button = {}, label = {} } addEventHandler("onClientResourceStart", resourceRoot, function() wnd = guiCreateWindow(129, 69, 610, 421, "لوحة الاعب\Player Panel ", false) guiWindowSetSizable(wnd, false) guiSetAlpha(wnd, 1.00) GUIEditor.button[1] = guiCreateButton(10, 39, 189, 80, "انتحار", false, wnd) guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFE91414") GUIEditor.button[2] = guiCreateButton(401, 39, 189, 80, "ارسال شكوى", false, wnd) guiSetProperty(GUIEditor.button[2], "NormalTextColour", "FF20DCB6") GUIEditor.button[3] = guiCreateButton(401, 310, 189, 80, "درع", false, wnd) guiSetProperty(GUIEditor.button[3], "NormalTextColour", "FFB545B1") GUIEditor.button[4] = guiCreateButton(401, 184, 189, 80, "دم", false, wnd) guiSetProperty(GUIEditor.button[4], "NormalTextColour", "FFD69625") GUIEditor.button[5] = guiCreateButton(10, 184, 189, 80, "قطع راس الاعب", false, wnd) guiSetProperty(GUIEditor.button[5], "NormalTextColour", "FF3DBF3A") GUIEditor.button[6] = guiCreateButton(10, 310, 189, 80, "اخفاء الشات", false, wnd) guiSetProperty(GUIEditor.button[6], "NormalTextColour", "FF1948DF") GUIEditor.label[1] = guiCreateLabel(495, 397, 100, 24, "by ja[b]er[X]Pro", false, wnd) end ) function OpenWin() guiSetVisible(wnd,not guiGetVisible(wnd)) showCursor(guiGetVisible(wnd)) end bindKey("F5", "down", OpenWin) guiSetVisible( wnd, false ) addEventHandler ( "onClientGUIClick", root, function ( ) if source == GUIEditor.button[1] then triggerServerEvent("kill",getLocalPlayer()) end end ) addEventHandler("onClientGUIClick",resourceRoot, function ( ) if ( source == GUIEditor.button[5] ) then triggerServerEvent("Pro",localPlayer) end end) addEventHandler ( 'onClientGUIClick', resourceRoot, function ( ) if ( source == GUIEditor.button[3] ) then triggerServerEvent ( 'GiveIi', localPlayer ) end end ) addEventHandler ("onClientGUIClick",root,function () if ( source == GUIEditor.button[6] ) then if isChatVisible then showChat (false) isChatVisible = false else showChat (true) isChatVisible = true end end end) addEventHandler ( 'onClientGUIClick', resourceRoot, function ( ) if ( source == GUIEditor.button[2] ) then executeCommandHandler('report') end end ) اكواد سيرفر addEvent("kill", true) addEventHandler("kill", root, function ( ) killPed ( client ) end ) addEvent("Pro",true) addEventHandler("Pro",root, function ( ) if ( isPedHeadless(source) ) then setPedHeadless(source,false) else setPedHeadless(source,true) end end) addEvent ( 'GiveIi', true ) addEventHandler ( 'GiveIi', resourceRoot, function ( ) setPedArmor ( source, 100 ) end )
×
×
  • Create New...