Jump to content

MR.KING111

Members
  • Posts

    25
  • Joined

  • Last visited

Everything posted by MR.KING111

  1. السلام عليكم عندي طلب ابي كود , الشوب بس يفتح في ساحة الحرب بس تطلع من الساحة يقفل ارجووو المساعدة و شكراا
  2. مشكووووووور تمت الافادة
  3. السلام عليكم ابي كود اذا ضغطت على زر تنقفل النافذة وشكرا
  4. مشكوووووووووووووور اشتغل الكود 100% وشكرا لكل لردو
  5. في مشكلة دخلت الماركر وانا في قروب الادمن ما فتحت نافذة
  6. السلام عليكم ورحمة الله وبركاته ابي اذا اللعب دخل الماركر تفتح نافذة بس لقروب الادمن client Marker = createMarker ( -2411.6735839844,-608.75842285156,132.6333772752, "cylinder", 1.5, 255, 0, 0, 255 ) addEventHandler('onClientMarkerHit', Marker, function ( hitPlayer ) if ( hitPlayer == localPlayer ) then guiSetVisible( shopWindow, true ) showCursor( true ) end end ) shopWindow = guiCreateWindow(370,90,640,456,"shop panel MR.KING111 ",false) guiSetVisible (shopWindow, false) guiWindowSetSizable(shopWindow,false) guiWindowSetMovable(shopWindow,true)
  7. السلام عليكم ابي كود يخلي الشي مؤقت يعني مثلا ابي النفاثة بس تشتغل دقيقتين .
  8. الكود مافيه كلنت بس سيرفر
  9. الكود شغال في مود بلاي المشكله اول مااشغل مود البيس مود يسير السلاح مايطلق
  10. السلام عليكم عندي مشكله في سلاح Rocket launcher مايشتغل في البيس addEvent("RBG",true) addEventHandler("RBG",root, function() local PlayerMoney = getPlayerMoney(source) if ( PlayerMoney >= 7000) then takePlayerMoney(source,7000) giveWeapon ( source , 36,19 ) setPedWeaponSlot(source, getSlotFromWeapon(36)) local name = getPlayerName(source) outputChatBox ( " #0099ccSuccessfully bought RBG #000000[ #ff0000-$2500 #000000]", getRootElement(), 255, 0, 0, true ) else outputChatBox("You don't have $7000 to buy ", source, 255, 0, 0, true) end end )
  11. السلام عليكم ابي كود سوبر ام 4 ماابي الكود جاهز ابيه من الويكي +وابي مثال عليه
  12. السلام عليكم انا عندي كود رصاص القنابل server.lua ماعرفت اسوي function onGuiClick (button, state, absoluteX, absoluteY) if ( source == weapButton_24 ) then local PlayerMoney = getPlayerMoney() if ( PlayerMoney > 3000 ) then takePlayerMoney(3000) outputChatBox("Super Grenade Well End After : 1 Minutes",source,255,255,0) triggerServerEvent("sp", getLocalPlayer()) function narBullets(weapon,ammo,ammoInClip,hitX,hitY,hitZ,hitElement) if ( weapon == 24) then createProjectile(getLocalPlayer(),16,hitX, hitY, hitZ) end if ( weapon == 23) then createProjectile(getLocalPlayer(),16,hitX, hitY, hitZ) end if ( weapon == 22) then createProjectile(getLocalPlayer(),16,hitX, hitY, hitZ) end if ( weapon == 31) then createProjectile(getLocalPlayer(),16,hitX, hitY, hitZ) end if ( weapon == 30) then createProjectile(getLocalPlayer(),16,hitX, hitY, hitZ) end if ( weapon == 32) then createProjectile(getLocalPlayer(),16,hitX, hitY, hitZ) end if ( weapon == 29) then createProjectile(getLocalPlayer(),16,hitX, hitY, hitZ) end if ( weapon == 28) then createProjectile(getLocalPlayer(),16,hitX, hitY, hitZ) end if ( weapon == 33) then createProjectile(getLocalPlayer(),16,hitX, hitY, hitZ) end if ( weapon == 34) then createProjectile(getLocalPlayer(),16,hitX, hitY, hitZ) end if ( weapon == 25) then createProjectile(getLocalPlayer(),16,hitX, hitY, hitZ) end end addEventHandler("onClientPlayerWeaponFire", getLocalPlayer(), narBullets) setTimer(function () removeEventHandler("onClientPlayerWeaponFire", getLocalPlayer(), narBullets) outputChatBox("Super Grenade Has been End",255,255,0) end,50000,1, true) triggerEvent("alarm", getRootElement()) else outputChatBox("Your money should be more than a $7000 to buy Super Grenade", source, 255, 25, 0, true) end end end addEventHandler ("onClientGUIClick", getRootElement(), onGuiClick)
  13. السلام عليكم ابي كوديين لشوب تكفون كود السيريال في الشوب و كود الفلوس في الشوب
  14. ذا الكود في مشكله سوبر دم addEvent("buySuperHealth", true) addEventHandler("buySuperHealth",root, function() if ( getPlayerMoney (source) >= price.shealth ) then takePlayerMoney(source, price.shealth) outputChatBox("You Bought Super Health By : "..price.shealth.."", source, 255, 255, 0, true) local name = getPlayerName(source) outputChatBox ( "#FFFF1A*** [ #FFFFFF" .. name .. " #FFFF1A] Has Bought Super Health By : "..price.shealth.."$ ***", getRootElement(), 255, 0, 0, true ) setPedStat(source,24,999) setElementHealth(source,200) addEventHandler("onPlayerWasted",getRootElement(), function() setPedStat(source,24,569) end ) else outputChatBox("You don't have $"..price.shealth.." to buy Super Health ", source, 255, 0, 0, true) end end ) -------
  15. مشكووووووور اخوي عناد اشتغلت الكودات
  16. عندي مشكله في كود النيترو واصلاح السياره تفضلو الكود addEvent("buyNitro", true) addEventHandler("buyNitro", rootElement, function() if isPedInVehicle(source) then if ( getPlayerMoney (source) >= 7000 ) then takePlayerMoney(source, 7000) addVehicleUpgrade(getPedOccupiedVehicle(source),1010) outputChatBox("Nitro Successfully added", source, 255, 255, 0, true) else outputChatBox("Not enough money.", source, 255, 0, 0, true) end else outputChatBox("You are not in a vehicle", source, 255, 0, 0, true) end end ) addEvent("buyRepair", true) addEventHandler("buyRepair", rootElement, function() if isPedInVehicle(source) then if ( getPlayerMoney (source) >= 5000 ) then takePlayerMoney(source, 5000) fixVehicle(getPedOccupiedVehicle(source)) outputChatBox("Vehicle Successfully Fixed", source, 255, 255, 0, true) else outputChatBox("Not enough money.", source, 255, 0, 0, true) end else outputChatBox("You are not in a vehicle", source, 255, 0, 0, true) end end )
  17. اخر طلب ابي كود ارسال الفلوس ونزل الشوب حقي تكفون
  18. السلام عليكم ابي اكواد شوب 1-كود ارسال الفلوس 2- كود الدم و الدرع
×
×
  • Create New...