Advertisement
lostcalpolydude

postAscensionScript

Sep 13th, 2015
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.17 KB | None | 0 0
  1. void new_ascension()
  2. {
  3. if ( my_level() != 1 && my_path() != "BIG!" )
  4. {
  5. return;
  6. }
  7.  
  8. visit_url( "tutorial.php?action=toot" );
  9. use( item_amount( $item[letter from King Ralph XI] ), $item[letter from King Ralph XI] );
  10. use( item_amount( $item[letter to Ed the Undying] ), $item[letter to Ed the Undying] );
  11. use( 1, $item[pork elf goodies sack] );
  12.  
  13. // Start the guild unlock quest
  14. visit_url( "guild.php?place=challenge" );
  15.  
  16. if ( my_path() != "Way of the Surprising Fist" && user_confirm( "Do you want to autosell your gems?" ) )
  17. {
  18. batch_open();
  19. autosell( item_amount( $item[baconstone] ), $item[baconstone] );
  20. autosell( item_amount( $item[hamethyst] ), $item[hamethyst] );
  21. autosell( item_amount( $item[porquoise] ), $item[porquoise] );
  22. batch_close();
  23. }
  24. use( item_amount( $item[carton of astral energy drinks] ), $item[carton of astral energy drinks] );
  25. use( item_amount( $item[astral six-pack] ), $item[astral six-pack] );
  26. use( item_amount( $item[carton of astral energy drinks] ), $item[carton of astral energy drinks] );
  27. //cli_execute( "garden pick" );
  28. if ( user_confirm( "Do you want to break your hippy stone?" ) )
  29. {
  30. visit_url("campground.php?confirm=on&smashstone=Yep."); //break hippy stone
  31. }
  32.  
  33. if ( my_path() == "Zombie Slayer" )
  34. {
  35. while ( !have_skill( $skill[ravenous pounce] ) ) visit_url( "campground.php?pwd&whichtree=Hunger&preaction=zombieskill" );
  36. while ( !have_skill( $skill[zombie maestro] ) ) visit_url( "campground.php?pwd&whichtree=Master&preaction=zombieskill" );
  37. while ( !have_skill( $skill[howl of the alpha] ) ) visit_url( "campground.php?pwd&whichtree=Anger&preaction=zombieskill" );
  38. }
  39. else if ( my_path() == "Avatar of Boris" )
  40. {
  41. take_storage( storage_amount( $item[boris's helm (askew)] ), $item[boris's helm (askew)] );
  42. take_storage( storage_amount( $item[boris's helm] ), $item[boris's helm] );
  43. }
  44. else if ( my_path() == "Avatar of Jarlsberg" )
  45. {
  46. take_storage( storage_amount( $item[jarlsberg's pan (cosmic portal mode)] ), $item[jarlsberg's pan (cosmic portal mode)] );
  47. take_storage( storage_amount( $item[jarlsberg's pan] ), $item[jarlsberg's pan] );
  48. }
  49. }
  50.  
  51. void main() {
  52. new_ascension();
  53. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement