Advertisement
Guest User

Untitled

a guest
Jun 21st, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.19 KB | None | 0 0
  1. if(get_property("_mayflySummons").to_int() < 30 && equipped_item($slot[acc2]) != $item[mayfly bait necklace] && item_amount($item[mayfly bait necklace]) > 0){
  2. cli_execute("try;equip acc2 mayfly bait necklace");
  3. }
  4.  
  5. if(get_property("_goth_slash_hipster_tracking").to_int() < 7 && get_property("_mayflySummons").to_int() < 30){
  6. cli_execute("familiar artistic goth kid");
  7. cli_execute("/autoattack none");
  8. }
  9.  
  10. int crayons;
  11. buffer page_text;
  12. while(get_property("_goth_slash_hipster_tracking").to_int() < 7 && get_property("_mayflySummons").to_int() < 30){
  13. crayons = slash_count($item[crayon shavings]);
  14. //menagerie level 1
  15. page_text = visit_url("adventure.php?snarfblat=51");
  16. if(page_text.length() > 6969){
  17. //basic elemental
  18. if(last_monster().id == 87){
  19. //work around pickpocket bug.
  20. visit_url("fight.php?action=steal");
  21. //mayflies.
  22. visit_url("fight.php?action=skill&whichskill=7024");
  23. }
  24. else{
  25. //not basic elemental
  26. if(last_monster().id == 88){
  27. visit_url("fight.php?action=macro&macrotext=skill snokebomb;");
  28. }
  29. else{
  30. //other not basic elemental
  31. if(last_monster().id == 89){
  32. visit_url("fight.php?action=macro&macrotext=use louder than bomb;");
  33. }
  34. else{
  35. if(last_monster().manuel_name.to_lower_case().contains_text("crayon")){
  36. //pickpocket crayon shavings so they don't wash away and ruin tracking.
  37. visit_url("fight.php?action=steal");
  38. visit_url("fight.php?action=macro&macrotext=while !pastround 10; attack; endwhile;");
  39. visit_url("main.php");
  40. if(last_monster().manuel_name.to_lower_case().contains_text("eldritch")){
  41. visit_url("fight.php?action=macro&macrotext=while !pastround 10; attack; endwhile;");
  42. }
  43. }
  44. else{
  45. abort("UR?");
  46. }
  47. }
  48. }
  49. }
  50. }
  51. if(crayons < slash_count($item[crayon shavings])){
  52. set_property("_goth_slash_hipster_tracking", get_property("_goth_slash_hipster_tracking").to_int()+1);
  53. }
  54. print("We think we've used up "+get_property("_goth_slash_hipster_tracking")+" goth fights");
  55. }
  56.  
  57. if(get_property("_mayflySummons").to_int() >= 30 && equipped_item($slot[acc2]) == $item[mayfly bait necklace] ){
  58. cli_execute("outfit npzr bullshit");
  59. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement