- NG Phorum http://www.ng-phorum.pun.pl/index.php - Skrypty http://www.ng-phorum.pun.pl/viewforum.php?id=9 - Gdy xx Hp << Użyj ManaPotiona i exura http://www.ng-phorum.pun.pl/viewtopic.php?id=5 |
Admin - 2009-05-02 09:50:12 |
JWT. Kod:const Hp='666' // Will say HealSpell if your health is lower than this Mana='20' // If your mana is lower than this it will use mana fluid ManaPotionId='000' //Change this to the ID of the mana potion you want to use HealSpell='Exura' while not terminated do begin if Self.Mana < Mana then Self.Containers.UseItemWithSelf(ManaPotionId); Sleep(200); if Self.Health <= Hp then Self.Say(HealSpell); Sleep(2000); end;[/hide] |