Advertisement
Guest User

Untitled

a guest
Aug 19th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. task MainTask
  2. {
  3.  
  4. while(GetTimer > 45)
  5. {
  6. DoStuff;
  7. ....
  8. }
  9.  
  10. DeleteEnemyShotToItem(ALL);
  11. Wait(60);
  12.  
  13. while(GetTimer > 30)
  14. {
  15. DoDifferentStuff;
  16. ....
  17. }
  18.  
  19. DeleteEnemyShotToItem(ALL);
  20. Wait(60);
  21.  
  22. loop
  23. {
  24. DoLastStuff;
  25. ....
  26. }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement