can anyone verify if the maze if actually back?
and if so, does srl log out for it?
thanks =)
Printable View
can anyone verify if the maze if actually back?
and if so, does srl log out for it?
thanks =)
Yes...the maze is very random, but SRL logs out. ^Code:{*******************************************************************************
function FindMaze: Boolean;
by: Stupid3ooo
Description: Checks for Maze and switches player.
*******************************************************************************}
function FindMaze: Boolean;
var
ax, ay: Integer;
begin
if (FindColorTolerance(ax, ay, 15395562, 129, 34, 129, 34, 4)) and (FindColorTolerance(ax, ay, 15395562, 378, 39, 378, 39, 4)) then //by Ghost
begin
Mazes := Mazes + 1;
Result := True;
Players[CurrentPlayer].Loc := 'Maze';
Players[CurrentPlayer].Active := False;
LogOut;
end;
end;
yes (never been away) and yes.