Вармод

Ask for scripts here

Moderators: Murderator+, Murderator

Post Reply
HellFire
Posts: 89
Joined: 2004-10-02 23:47:48

Вармод

Post by HellFire »

Нужен простенький скрипт,чтобы как только хп у противника становилось <60 чар выключал вармод,и так каждый раз.)
Scripts Writer
Posts: 2259
Joined: 2005-04-19 18:00:29
Location: Московская область
Contact:

Post by Scripts Writer »

Code: Select all

sub Test_Opponent_Hp()
  uo.AddObject('who')
  while uo.Targeting()
    wait(100)
  wend

  repeat
    wait(100)
  until uo.GetHp('who') <= uo.GetMaxHp('who')/3
  uo.WarMode(0)
end sub
HellFire
Posts: 89
Joined: 2004-10-02 23:47:48

Post by HellFire »

Благодарю. :arrow:
Post Reply