Jukkas right..
notice..
SCAR Code:
if not(FindObj(x,y,'uard',GuardSleeve,15)) then
LogOut;
Exit;
after a scar will look at only the next command for the if... so if u were to use a it would start "a loop" for the but other than that...
SCAR Code:
if not(FindObj(x,y,'uard',GuardSleeve,15)) then
LogOut;
Exit;
that is basicly..
SCAR Code:
if not(FindObj(x,y,'uard',GuardSleeve,15)) then
LogOut;
and the would Be PART of the script so nomatter wht, it exits.. try
SCAR Code:
if not(FindObj(x,y,'uard',GuardSleeve,15)) then
Begin
LogOut;// maybe NextPlayer(false);?..
Exit;
end;