Advertisement
Guest User

ANTS!

a guest
Oct 26th, 2016
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | None | 0 0
  1. if(_root.save.noAntsTime > 0)
  2. {
  3. if(_root.sprayCooldown1 <= 0 && _root.save.ants > 0)
  4. {
  5. _root.sprayCooldown1 = 180;
  6. _root.save.antsSprayed = _root.save.antsSprayed + Math.ceil(_root.save.ants * 0.9);
  7. _root.save.ants = Math.floor(_root.save.ants * 0.1);
  8. }
  9. if(_root.save.featureDoomSprayer == true)
  10. {
  11. if(_root.sprayCooldown2 <= 0 && _root.save.ants > 0)
  12. {
  13. _root.sprayCooldown2 = 600;
  14. _root.save.antsSprayed = _root.save.antsSprayed + (_root.save.ants + 99);
  15. _root.save.ants = -99;
  16. }
  17. }
  18. }
  19. _root.actiondescription = "";
  20. if(_root.save.featureManualSprayer == true)
  21. {
  22. if(_root.sprayCooldown1 <= 0 && _root.save.ants > 0)
  23. {
  24. _root.sprayCooldown1 = 180;
  25. _root.save.antsSprayed = _root.save.antsSprayed + Math.ceil(_root.save.ants * 0.9);
  26. _root.save.ants = Math.floor(_root.save.ants * 0.1);
  27. }
  28. }
  29. }
  30. _root.actiondescription = "";
  31. if(_root.save.featureDoomSprayer == true)
  32. {
  33. if(_root.sprayCooldown2 <= 0 && _root.save.ants > 0)
  34. {
  35. _root.sprayCooldown2 = 600;
  36. _root.save.antsSprayed = _root.save.antsSprayed + (_root.save.ants + 99);
  37. _root.save.ants = -99;
  38. }
  39. }
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement