I wanna take this funtion out, so i can run the script normally without it using mutli player though
I wanna take this funtion out, so i can run the script normally without it using mutli player though
SCAR Code:procedure DeclarePlayers;
begin
HowManyPlayers := 1;
NumberOfPlayers(HowManyPlayers);
CurrentPlayer := 0;
Players[0].Name := '';
Players[0].Pass := '';
Players[0].Nick := '';
Players[0].Active := True;
end;
Would that be what you looking for?
Just remember to "DeclarePlayers;" at the start of your script.
take out O_o
Why would you like to take the function out? Just add one player to the function instead of many and it will run on that account only.
SCAR Code:procedure DeclarePlayers;
begin
HowManyPlayers := 1;
NumberOfPlayers(HowManyPlayers);
CurrentPlayer := 0;
Players[0].Name := ''; //Add your player's username here
Players[0].Pass := ''; //your player's password
Players[0].Nick := ''; //3 characters from the middle of your username (Example: Username="I likecheese" then Nick="kech".
Players[0].Active := True;
end;
There are currently 1 users browsing this thread. (0 members and 1 guests)