Advertisement
DarkHorseDre

ST, eyeback, TS

Jul 15th, 2020
798
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function EyebackTS() {
  2.     Town.doChores();
  3.     Pather.useWaypoint(111);
  4.     Precast.doPrecast(true);
  5.  
  6.     if (!Pather.moveToPreset(me.area, 1, 790)) {
  7.         throw new Error("Failed to move to Sharptooth Slayer");
  8.     }
  9.  
  10.     Attack.kill(getLocaleString(22493)); // Sharptooth Slayer
  11.     Pickit.pickItems();
  12.  
  13.     if (!Pather.moveToPreset(111, 1, 784)) {
  14.         throw new Error("Failed to move to Eyeback the Unleashed");
  15.     }
  16.  
  17.     Attack.clear(15, 0, getLocaleString(22499)); // Eyeback the Unleashed
  18.     Pickit.pickItems();
  19.  
  20.     Pather.journeyTo(112);
  21.     if (!Pather.moveToExit(113, false)) {
  22.         throw new Error("Failed to move to Thresh Socket");
  23.     }
  24.  
  25.     Attack.kill(getLocaleString(22498)); // Thresh Socket
  26.     Pickit.pickItems();
  27.  
  28.     return true;
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement