Jump to content

overlocus

Members
  • Posts

    61
  • Joined

  • Last visited

Everything posted by overlocus

  1. How can I hide the radar, hud and chat?
  2. How can i hide radar and hud and chat
  3. Hi guys, im looking for prone script I want this thing in the picture I saw this script in MTA PUBG
  4. It doesn't work I want the players not to use this command over and over the command can only be used once per minute.
  5. Thanks for helping me. Could you add it to my code? or can someone else help?
  6. function hirsiz (player) if not isGuestAccount(getPlayerAccount(player)) then if isObjectInACLGroup("user."..getAccountName(getPlayerAccount(player)), aclGetGroup("Hirsiz")) then takeAllWeapons (player ) setPedArmor (player, 0 ) giveWeapon(player,4) giveWeapon(player,22,100) setPedSkin(player, 144 ) setPlayerTeam ( player, Hirsiz ) outputChatBox("#FFFFFF[#00FF00!#FFFFFF] Hırsızlık araçları verildi.", player, 255, 0, 0, true) else outputChatBox("#FFFFFF[#FF0000!#FFFFFF] Bu komutu kullanmak için Hırsız olmanız gerekiyor.", player, 255, 0, 0, true) end end end addCommandHandler("hirsiz",hirsiz) I want the players to use this command once a minute.
  7. Is there anyone who can explain in more detail?
  8. function bankaGuiAc() local vis = guiGetVisible (atmAnaEkran) if (vis == false) then local team = getPlayerTeam (getLocalPlayer()) local crim = getTeamName (team) local atmSoymaB = getElementData (getLocalPlayer(),"atmSoyabilirmi") if (crim == "Criminals" and atmSoymaB) then guiSetEnabled (atmSoyButton,true) else guiSetEnabled (atmSoyButton,false) end guiSetVisible (atmAnaEkran,true) showCursor(true) guiSetText (DurumLabel,"") setElementData (getLocalPlayer(),"label1",false) setElementData (getLocalPlayer(),"label2",false) setElementData (getLocalPlayer(),"label3",false) setElementData (getLocalPlayer(),"label4",false) end end addEvent("bankaGuiAc", true) addEventHandler("bankaGuiAc", root, bankaGuiAc) how can i acces this menu just acl group i want acces this menu without team group. i just want acl group (VIP)
  9. Hi guys i want ACL GUN COMMAND /vipgun wipgun gives m4 and ak47
  10. function createBackFire(theVeh, scx, scy, scz) local fireChords={} local dist = 0.04 for i = 1, 6 do local x, y, z = getPositionFromElementOffset(theVeh,scx,scy-dist,scz) fireChords[i]= {pX = x, pY = y, pZ = z} dist = dist + 0.2 end local x,y,z = getPositionFromElementOffset(theVeh,scx,scy,scz) local x2,y2,z2 = getPositionFromElementOffset(theVeh,scx,0,scz) local v1, v2, v3 = getVectors(x,y,z, x2,y2,z2) for i, val in ipairs(fireChords) do fxAddGunshot(val.pX,val.pY,val.pZ, v1,v2,v3, true) fxAddGunshot(val.pX,val.pY,val.pZ, v1+1.5,v2,v3, true) fxAddGunshot(val.pX,val.pY,val.pZ, v1-1.5,v2,v3, true) fxAddGunshot(val.pX,val.pY,val.pZ, v1,v2,v3+0.8, true) fxAddGunshot(val.pX,val.pY,val.pZ, v1,v2,v3-0.8, true) fxAddGunshot(val.pX,val.pY,val.pZ, v1,v2+1,v3+0.8, true) fxAddGunshot(val.pX,val.pY,val.pZ, v1,v2+2,v3+0.8, true) fxAddGunshot(val.pX,val.pY,val.pZ, v1,v2+10,v3+0.8, true) fxAddGunshot(val.pX,val.pY,val.pZ, v1,v2-10,v3+0.8, true) fxAddGunshot(val.pX,val.pY,val.pZ, v1,v2-2,v3+0.8, true) fxAddGunshot(val.pX,val.pY,val.pZ, v1,v2-1,v3+0.8, true) end local s = playSound3D("sound/backfire2.wav", x,y,z, false) setSoundMaxDistance( s, 80 ) setSoundVolume(s, 0.5) I want the code to repeat itself randomly
  11. how can i add more than one group on this code? and how can i set vehicle id i want only vips can enter the banshee
  12. I just want the cars that a group can drive with Only a VIP can drive this car.
  13. How can i add aclGroupAddObject on this code i want when this code started it gives moderator function Tag2Fonksiyon() if getPlayerMoney(source) < Fiyat then outputChatBox("#FFFFFF[#FF0000!#FFFFFF] Yeterli miktarda paranız bulunmamaktadır.", source, 0, 150, 255, true) return end takePlayerMoney(source, Fiyat) outputChatBox("#FFFFFF[#00FF00!#FFFFFF] Seçilen tag başarıyla satın alındı. #00ff0050.000₺", source, 0, 200, 255, true) local playeraccount = getPlayerAccount(source) setAccountData(playeraccount, "playerTeam", "Tag_Polis") end addEvent("Tag2Event", true) addEventHandler("Tag2Event", Element, Tag2Fonksiyon )
  14. I did not do it on purpose. Its a bug
  15. Hi guys i have a question how can i make permission shop panel for example 5000 dollar (ingame money) moderator (i wont give mod this is example) 10000 dollar buy smod I can edit it if it exists in community resources
  16. How can i add more than one ACL on this code if isObjectInACLGroup("user."..Deadusergroup, aclGetGroup("Polis")) then
×
×
  • Create New...