Advertisement
kolpastebin

Start casual.ash

Nov 13th, 2016
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | None | 0 0
  1. void main()
  2. {
  3. boolean yes = user_confirm("Are you sure you want to start a new casual?");
  4. if (!yes)
  5. return;
  6. yes = user_confirm("Are you suuuuure?");
  7. if (!yes)
  8. return;
  9.  
  10. boolean ascend_as_sauceror = user_confirm("Do you want to ascend as a sauceror? (NO for seal clubber)");
  11.  
  12. cli_execute("call scripts/Utility/death of a casual.ash");
  13.  
  14. if (my_adventures() > 0)
  15. {
  16. print_html("Use up those adventures first.");
  17. return;
  18. }
  19. visit_url("ascend.php?action=ascend&confirm=on&confirm2=on");
  20. visit_url("afterlife.php");
  21. visit_url("afterlife.php?action=pearlygates");
  22.  
  23. buffer permery_text = visit_url("afterlife.php?place=permery");
  24. if (!permery_text.contains_text("It looks like you've already got all of the skills from your last life marked permanent."))
  25. {
  26. abort("perm a skill");
  27. return;
  28. }
  29.  
  30. visit_url("afterlife.php?action=buydeli&whichitem=5046"); //astral pilsners
  31. visit_url("afterlife.php?action=buyarmory&whichitem=5040"); //astral pet sweater
  32.  
  33.  
  34. if (ascend_as_sauceror)
  35. visit_url("afterlife.php?action=ascend&confirmascend=1&whichsign=2&gender=2&whichclass=4&whichpath=0&asctype=1&noskillsok=1"); //Sauceror
  36. else
  37. visit_url("afterlife.php?action=ascend&confirmascend=1&whichsign=1&gender=2&whichclass=1&whichpath=0&asctype=1&noskillsok=1"); //Seal clubber
  38.  
  39.  
  40. print_html("Welcome to your new life.");
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement