Aenimus

[NO LONGER WORKS]

Jul 25th, 2019
318
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.09 KB | None | 0 0
  1. // Currently only prints stuff for Feast of Boris, but it should work for any holiday monster.
  2. if(get_counters("Holiday Monster window begin", 1, 950) != "Holiday Monster window begin" && get_counters("Holiday Monster window end", 0, 950) == "Holiday Monster window end"
  3. && item_amount($item[your father's MacGuffin diary]) > 0 && get_property("questL11Shen") == "started" && get_property("aenHolMonCheck") != total_turns_played()) {
  4. if(get_property("choiceAdventure1074") != 2) {
  5. set_property("choiceAdventure1074", "2");
  6. }
  7. print("Checking whether this turn is the holiday wanderer.", "blue");
  8. adv1($location[The Copperhead Club], -1, "");
  9. set_property("aenHolMonCheck", total_turns_played());
  10. visit_url("main.php");
  11. if(last_monster() == $monster[Candied Yam Golem] || last_monster() == $monster[Malevolent Tofurkey] || last_monster() == $monster[Possessed Can of Cranberry Sauce]
  12. || last_monster() == $monster[Stuffing Golem]) {
  13. print("This turn is your holiday wanderer turn!", "red");
  14. } else {
  15. print("This turn was not your holiday wanderer turn. Checking back next turn.", "blue");
  16. }
  17. }
  18.  
  19. /* // Commented out since romantic arrows are out of standard
  20. if(get_counters("Romantic Monster window begin", 1, 950) != "Romantic Monster window begin" && get_counters("Romantic Monster window end", 0, 950) == "Romantic Monster window end"
  21. && item_amount($item[your father's MacGuffin diary]) > 0 && get_property("questL11Shen") == "started" && get_property("aenRomMonCheck") != total_turns_played()) {
  22. int romantic = get_property("_romanticFightsLeft").to_int()
  23. if(get_property("choiceAdventure1074") != 2) {
  24. set_property("choiceAdventure1074", "2");
  25. }
  26. print("Checking whether this turn is the romantic wanderer.", "blue");
  27. adv1($location[The Copperhead Club], -1, "");
  28. set_property("aenRomMonCheck", total_turns_played());
  29. visit_url("main.php");
  30. if(get_property("_romanticFightsLeft").to_int() > romantic) {
  31. print("This turn is your romantic wanderer turn!", "red");
  32. } else {
  33. print("This turn was not your holiday wanderer turn. Checking back next turn.", "blue");
  34. }
  35. } */
Advertisement
Add Comment
Please, Sign In to add comment