Exori Script

Const
NumberOfMonsters = 5 //Quantidade de Monstro
MinHealth = 400 //Vida, Se tiver Menos que isso nao soltará Exori
MinMana = 120 //Mana Necessaria

function CountMonstersBesideYou:Integer;
begin
Result := 0;
UpdateWorld;
for i := 0 to creatures.Count -1 do
begin
if i >= Creatures.Count then break
for x := -1 to 1 do
begin
if x >= 2 then break
for y := -1 to 1 do
begin
if y > 1 then break;
if Creatures.Creature(i).NPC then
if (Creatures.Creature(i).x = Self.X +x) and (Creatures.Creature(i).y = Self.y + y) and (Creatures.Creature(i).Z = Self.Z) then
Result := Result + 1;
end;
end;
end;
end;

while not terminated do
begin
UpdateWorld;
if CountMonstersBesideYou >= NumberOfMonsters then
if Self.Mana >= MinMana then
if Self.Health > MinHealth then
Self.Say('Exori');
sleep(100);
end;

Pesquisar no site

By Chuck Norriz © 2009 Todos os direitos reservados.