Code: Select all
while not uo.dead()
if uo.poisoned() then
uo.cast('Cure','self')Code: Select all
not uo.poisoned()Moderators: Murderator+, Murderator
Code: Select all
while not uo.dead()
if uo.poisoned() then
uo.cast('Cure','self')Code: Select all
not uo.poisoned()Code: Select all
while not uo.dead()
while uo.poisoned()
repeat
uo.cast('Cure','self')
until not uo.poisoned()
wend
wendEgrace wrote:ПопробуйCode: Select all
while not uo.dead() while uo.poisoned() uo.cast('Cure','self') wait(1000) uo.print('Морфий введен. ') wend wait(100) wend uo.print('[Пиип-пииип-пииииииии] Пользователь мертв.')