So I understand that in order for the RandomSolver to work you must set the nick correctly. But what if the script that is being used doesn't include nick. for example if it looks like this:
procedure P07_DeclarePlayer;
begin
P07_Playername:= username;
P07_PlayerPass:= password;
end;
Some other scripts have the nick part added so it looks like this:
procedure DeclareThings;
begin
NumberOfPlayers(1);
CurrentPlayer := 0;
Players[0].Name := TEdit0.TEXT ;
Players[0].Pass := TEdit2.TEXT ;
Players[0].Nick := TEdit1.TEXT;
Players[0].Active:= True;
Players[0].Pin:= Tedit3.TEXT ;
If the Script I'm using doesn't include the nick part does that mean it can't solve randoms? Is there a way i can get it to solve randoms?


Reply With Quote




