Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. @Initialize:
  2. CreateVarInt(x)
  3. CreateVarInt(y)
  4. CreateVarInt(myX)
  5. CreateVarInt(myY)
  6. CreateVarString(mod)
  7. OnModDetected(@Mod)
  8. SetVarsMyCoords(x, y)
  9. GoTo(@Main)
  10.  
  11. @Main:
  12. SetVarsMyCoords(myX, myY)
  13. GoToIfVarIntNotEqual(@OutOfCoords, myX, %x)
  14. GoToIfVarIntNotEqual(@OutOfCoords, myY, %y)
  15. Wait(20)
  16. GoTo(@Main)
  17.  
  18. @OutOfCoords:
  19. ClientMsg(Out of coords)
  20. SystemOut(Out of coords)
  21. StopAutologin()
  22. ScreenShot()
  23. StopScript()
  24.  
  25. @Mod:
  26. SetVarDetectedMod(mod)
  27. ClientMsg(Mod detected: &mod)
  28. SystemOut(Mod detected: &mod)
  29. StopAutologin()
  30. ScreenShot()
  31. StopScript()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement