OMGOMG Autolog Floor Under Dection
There is a safelist for this witch makes it even better
To add to the safelist add to the line PlayerSafe = ['Player1','Player2','Player3']
Just replace Player1 with the player you wish to be on your safe list. Also you can add more by just following the format it's listed in.
Const
PlayerSafe = ['Player1','Player2','Player3'] // add players as many as you want.
while not terminated do
begin
UpdateWorld;
For G:= 0 to Creatures.Count -1 do
begin
for i:= Low(PlayerSafe) to High(PlayerSafe) do
begin
If Creatures.Creature[G].Z = Self.Z + 1 then
If Creatures.Creature[G].Name = PlayerSafe[i] then
Self.Logout(true);
Sleep(100);
end;
sleep(100);
end;
sleep(100);
end;
page revision: 0, last edited: 31 May 2007 23:41