Nexuz
Administrator
Dołączył: 29 Gru 2007
Posty: 10
Przeczytał: 0 tematów
Pomógł: 5 razy Ostrzeżeń: 0/5
|
Wysłany: Nie 19:28, 30 Gru 2007 Temat postu: Health potiony -- skrypt !!! |
|
|
Jest to skrypt pozwalający na automatyczym zalewniu mixtury
Cytat: | const
////////// Potion Healing //////////
Minimum_Potion_Health = 800
Health_Potion_ID = 239
////////////////////////////////////
////////// Spell Healing //////////
Minimum_Spell_Health = 1500
Healing_Spell = 'exana mort'
Mana_Needed = 65
Restore_Mana_At = 300
Mana_Potion_ID = 268
////////////////////////////////////
while not Terminated do
begin
UpdateWorld;
if (Self.Health < Minimum_Potion_Health) then Self.Containers.UseItemWithSelf(Health_Potion_ID);
if (Self.Health < Minimum_Spell_Health) and (Self.Mana >= Mana_Needed) then
begin
Self.Say(Healing_Spell);
Sleep(1000);
end;
else if (Self.Mana < Restore_Mana_At) and (Self.Health > Minimum_Potion_Health) then
begin
Self.Containers.UseItemWithSelf(Mana_Potion_ID);
Sleep(1000);
end;
Sleep(100);
end; |
W linijce Minimum_Potion_Health wpisujemy na ilu hp chcemy aby mikstura nas uleczyła
W linijce Health_Potion_ID wpisujemy ID potiona (może to być greate , strong, normal)
Post został pochwalony 1 raz
|
|