Guest User

Untitled

a guest
Oct 22nd, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. --AUTO DETECTING GHOSTMODE SCRIPT BY SNIPER
  2. function detectHunterInStartedMap(mapres)
  3. for i, pickup in ipairs(g_Pickups) do
  4. if g_Pickups[i].vehicle == 425 or g_Pickups[i].vehicle == 520 then
  5. g_MapOptions.ghostmode = true
  6. g_GameOptions.ghostmode = true
  7. updateGhostmode()
  8. --outputChatBox('Ghostmode enabled automatically', g_Root, 0, 240, 0)
  9. break
  10. end
  11. end
  12.  
  13. end
  14. addEvent("onMapStarting",true)
  15. addEventHandler("onMapStarting", getRootElement(), detectHunterInStartedMap)
Add Comment
Please, Sign In to add comment