Advertisement
intangibles

Untitled

Sep 2nd, 2016
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.75 KB | None | 0 0
  1.   while $breakDuskRuin == false
  2.     if checknpcs
  3.       arenaWatch()
  4.       while checknpcs # Attack Loop
  5.         if stunned?
  6.           sleep 1 until !stunned?
  7.           $watchAgain = true
  8.         end
  9.         arenaWatch() if $watchAgain
  10.         fput "stand" unless standing?
  11.         bput "incant 302", "You"
  12.  
  13.         ## CHECK FOR MYSTIC FOCUS
  14.         if !Spell[1711].active?
  15.           bput "get my quartz orb", "You"
  16.           bput "rub my orb", "You"
  17.           bput "stow all", "You"
  18.         end
  19.       end ## end while checknpcs
  20.       ## wait for next monster
  21.       $watchAgain = false
  22.       matchtimeout(15, "An announcer shouts")
  23.       GameObj.loot.each {|i| put "tap ##{i.id}"}
  24.     end ## end if checknpcs
  25.   sleep 0.3
  26.   end ## end while loop
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement