Yoko
http://forum.yoko.com.ua/

Whats wrong? need help
http://forum.yoko.com.ua/viewtopic.php?f=17&t=13980
Page 1 of 1

Author:  Mikas [ 2008-09-22 19:21:37 ]
Post subject:  Whats wrong? need help

Code:
sub heal()
repeat
   if uo.life<290 then
     uo.bandageself()
     wait(3000)
    endif
      wait(1000)
until uo.dead()
end sub


Whats wrong cant understand.. it works heals my self but some times i get error with button ok cant remember now text something like unexepted handle paradise dont remember..

Author:  Infectous [ 2008-09-23 09:39:19 ]
Post subject: 

that is a dead cycle or what ever they call it, (burn out your cpu) try reading more info in the tutorials, I use googles translator to understand the Russian... least you will pick up on the theory... looks like you had the right idea just use and "ELSE"

Code:
sub heal()
repeat
   if uo.life<290 then
     uo.bandageself()
     wait(3000)
    else
      wait(1000)
   end if
until uo.dead()
end sub


I like this way cause you can add things to it for ex
Code:
sub heal()
repeat
  if uo.poisoned() then
drink_cure()
    else
   if uo.life<290 then
     uo.bandageself()
     wait(3000)
    else
      wait(1000)
   end if
  end if
until uo.dead()
end sub

Author:  Mikas [ 2008-09-24 08:13:49 ]
Post subject: 

t.y you just added else to this :) i thought i dont need it..

Page 1 of 1 All times are UTC+02:00
Powered by phpBB® Forum Software © phpBB Limited
https://www.phpbb.com/