Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Currently only prints stuff for Feast of Boris, but it should work for any holiday monster.
- 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"
- && item_amount($item[your father's MacGuffin diary]) > 0 && get_property("questL11Shen") == "started" && get_property("aenHolMonCheck") != total_turns_played()) {
- if(get_property("choiceAdventure1074") != 2) {
- set_property("choiceAdventure1074", "2");
- }
- print("Checking whether this turn is the holiday wanderer.", "blue");
- adv1($location[The Copperhead Club], -1, "");
- set_property("aenHolMonCheck", total_turns_played());
- visit_url("main.php");
- if(last_monster() == $monster[Candied Yam Golem] || last_monster() == $monster[Malevolent Tofurkey] || last_monster() == $monster[Possessed Can of Cranberry Sauce]
- || last_monster() == $monster[Stuffing Golem]) {
- print("This turn is your holiday wanderer turn!", "red");
- } else {
- print("This turn was not your holiday wanderer turn. Checking back next turn.", "blue");
- }
- }
- /* // Commented out since romantic arrows are out of standard
- 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"
- && item_amount($item[your father's MacGuffin diary]) > 0 && get_property("questL11Shen") == "started" && get_property("aenRomMonCheck") != total_turns_played()) {
- int romantic = get_property("_romanticFightsLeft").to_int()
- if(get_property("choiceAdventure1074") != 2) {
- set_property("choiceAdventure1074", "2");
- }
- print("Checking whether this turn is the romantic wanderer.", "blue");
- adv1($location[The Copperhead Club], -1, "");
- set_property("aenRomMonCheck", total_turns_played());
- visit_url("main.php");
- if(get_property("_romanticFightsLeft").to_int() > romantic) {
- print("This turn is your romantic wanderer turn!", "red");
- } else {
- print("This turn was not your holiday wanderer turn. Checking back next turn.", "blue");
- }
- } */
Advertisement
Add Comment
Please, Sign In to add comment