Advertisement
kolpastebin

CollectSeaJelly.ash

Jan 4th, 2017
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. void main()
  2. {
  3. if (my_level() < 11)
  4. {
  5. print("You need to be level eleven first.", "red");
  6. return;
  7. }
  8. if (!$familiar[space jellyfish].have_familiar())
  9. {
  10. print("You don't seem to have a Space Jellyfish. Check SR388.", "red");
  11. return;
  12. }
  13. visit_url("place.php?whichplace=sea_oldman&action=oldman_oldman");
  14. familiar old_familiar = my_familiar();
  15. use_familiar($familiar[space jellyfish]);
  16. visit_url("place.php?whichplace=thesea&action=thesea_left2");
  17. visit_url("choice.php?whichchoice=1219&&option=1");
  18. use_familiar(old_familiar);
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement