Advertisement
intangibles

Untitled

Jun 20th, 2016
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 1.08 KB | None | 0 0
  1.  
  2.  
  3. ## This will use symbol Transcend
  4. Thread.new {
  5.   while true
  6.     wait_until{(not Spell[9049].active? and not Spell[9812].active? and not dead? and running?('bigshot')) and percenthealth <= 80 and (!standing? or stunned? or webbed?) and ((GameObj.npcs.any? { |npc| npc.type !~ /passive/ and npc.status !~ /dead/ }) or (GameObj.loot.each { |i| i.noun =~ /cloud/}))}
  7.     pause_script 'bigshot' if running? 'bigshot'
  8.     dothistimeout "sym trans confirm", 3, /space between the corporeal|^You have already|^You strain/
  9.     unpause_script 'bigshot' if running? 'bigshot'
  10.   end
  11. }
  12.  
  13. while line = get
  14.   fput 'out' if line =~ /You walk into a gaping/
  15.   puts "<pushStream id=\"speech\"/>#{line}\n<popStream/>\n" if line =~ /^\[Private/
  16.  
  17.   if line =~ /^A vaespilon drags/
  18.     while line2 = get
  19.       if line2 =~ /A vaespilon draws/
  20.         pause_script 'bigshot'
  21.         fput 'sym holi vaesp'
  22.         fput 'sym holi second vaesp'
  23.         fput 'sym holi third vaesp'
  24.         unpause_script 'bigshot'
  25.         break
  26.       end
  27.       break if line =~ /^You hear a sound/
  28.     end
  29.   end
  30. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement