Aenimus

PreAdventure script for automatic BoomBox drop counters

Nov 8th, 2019
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. if(to_int(get_property("_boomBoxFights")) == 9 && to_int(get_property("_boomBoxSongsLeft")) > 2
  2. && !get_counters("", 0, 950).contains_text("BoomBox reward") && my_turncount() < 300) {
  3. cli_execute("counters add 1 BoomBox reward");
  4. }
  5.  
  6. if(to_int(get_property("_boomBoxFights")) == 9 && !get_counters("", 0, 950).contains_text("BoomBox reward")) {
  7. stop_counter("BoomBox reward");
  8. cli_execute("counters add 1 BoomBox reward");
  9. }
Advertisement
Add Comment
Please, Sign In to add comment