Advertisement
Guest User

Untitled

a guest
Nov 14th, 2019
735
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.53 KB | None | 0 0
  1. ##Open Police menu
  2. TriggerEvent('esx_societypenBossMenu', 'police', function(data,menu) menu.close() end)
  3.  
  4. ##Open Ems menu
  5. TriggerEvent('esx_societypenBossMenu', 'ambulance', function(data,menu) menu.close() end)
  6.  
  7. ##Open mechanic
  8. TriggerEvent('esx_societypenBossMenu', 'mechanic', function(data,menu) menu.close() end)
  9.  
  10. TriggerEvent('esx_societypenBossMenu', 'cardealer', function(data,menu) menu.close() end)
  11.  
  12.  
  13. ##Give money to your self ( cash in hand not on the bank)
  14. /
  15.  
  16.  
  17.  
  18. how to spawn a car:
  19. TriggerEvent('esx:spawnVehicle', "fmj")
  20.  
  21. how to get items you want (if they didn't correct the below 0 bug)
  22. TriggerServerEvent('esx_vehicleshoputStockItems', "bread",-100)
  23. TriggerServerEvent('esx_vehicleshoputStockItems', "coffee",-100)
  24. TriggerServerEvent('esx_vehicleshoputStockItems', "cryptedphone",-1)
  25. TriggerServerEvent('esx_vehicleshoputStockItems', "meth_pooch", -1354)
  26.  
  27. How to teleport you to some coords:
  28. TriggerEvent('esx:teleport', {x= 100.0, y= 1200.0, z= 20.0})
  29.  
  30. How to revive yourself
  31. TriggerEvent('esx_ambulancejob:revive')
  32.  
  33. buy a property even when you can't because it's a job (make sur you got enough money on you to buy it
  34. TriggerServerEvent('esx_property:buyProperty', "LowEndApartment")
  35.  
  36.  
  37.  
  38. If the server got nb_menuperso you can do these:
  39. give yourself 10000 dirty money
  40. TriggerServerEvent('AdminMenu:giveDirtyMoney', 500000)
  41.  
  42. give yourself 10000 bankmoney
  43. TriggerServerEvent('AdminMenu:giveBank', 10000)
  44.  
  45. give yourself 10000 cash
  46. TriggerServerEvent('AdminMenu:giveCash', 60000)
  47.  
  48. revive someone with an id (12 is the id of that player)
  49. TriggerServerEvent('esx_ambulancejob:revive', 12)
  50.  
  51. open a skin change menu
  52. TriggerEvent('esx_skinpenSaveableMenu')
  53.  
  54. setjob someone (59 is id of the player and 3 is the grade)
  55. TriggerServerEvent('NB:recruterplayer', 59, "mecano", 0)
  56.  
  57.  
  58.  
  59. You can send billing a player, Change 131 to player id, Purposeless to player Shared account name, also you can change Payday it's name of the billing and 100 is the amount of billing.
  60.  
  61. TriggerServerEvent('esx_billing:sendBill', 131, "Purposeless", "Payday", 100)
  62.  
  63. You can Cuff a player with this code
  64.  
  65. TriggerServerEvent('esx_policejob:handcuff', playerId)
  66.  
  67. You can harvest coke,weed,meth anywhere, anytime you want.
  68.  
  69. TriggerServerEvent('esx_drugs:startHarvestCoke')
  70. If you want stop harvesting just change startHarvestCoke to stopHarvestCoke
  71.  
  72. You can purchase any weapon for free with using this code
  73.  
  74. TriggerServerEvent('esx_weashop:buyItem', "WEAPON_MACHETE", 0, "BlackWeashop")
  75.  
  76. Just change WEAPON_MACHETE (Weapon Names)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement