0 Members and 2 Guests are viewing this topic.
function OnRequestGame(IP: string; State: integer): integer;begin WriteLn(IP+' requests game... so this function was called.'); State := 4; Result := State;end;
function OnRequestGame(IP: string; State: integer): integer;begin WriteLn(IP+' requests game... so this function was called.'); Result := 4;end;
I've got same problem. How did you solve that?PS: I don't have any other script using OnRequestGame event.
function OnRequestGame(IP: string;State: integer):integer;begin result := 4;end;