Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. else if(my_name() == "winterbay")
  2. {
  3. if(in_bad_moon() && in_hardcore())
  4. {
  5. }
  6. else
  7. {
  8. if(my_class() == to_class("Sauceror") && get_property("lastNemesisBeaten") == get_property("knownAscensions"))
  9. {
  10. if (user_confirm("Do you want to gather slimes?"))
  11. {
  12. string test;
  13. for i from 1 to 10
  14. {
  15. test = visit_url("volcanoisland.php?pwd&action=npc&subaction=getslime");
  16. if (contains_text(test,"Maybe tomorrow"))
  17. {
  18. print("You've already received your slimes for today, stopping");
  19. exit;
  20. }
  21. }
  22. }
  23. }
  24. if(get_property("_wenttoBAfH") != true && user_confirm("Do you want to jump to BAfH?"))
  25. {
  26. int origin = origin_clan();
  27. goto_clan(90485);
  28. visit_vip("crimbotree get");
  29. visit_vip("glass");
  30. visit_vip("pool 3");
  31. visit_vip("pool 3");
  32. visit_vip("pool 3");
  33. visit_vip("ballpit");
  34. if(available_amount($item[double-ice box]) > 0 || my_path() == "Bees Hate You")
  35. visit_vip("shower hot");
  36. else
  37. visit_vip("shower ice");
  38. goto_clan(origin);
  39. set_property("_wenttoBAfH", true);
  40. }
  41. }
  42.  
  43. use(item_amount($item[Pack of Alice's Army Cards]), $item[Pack of Alice's Army Cards]);
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement