Is it possible to have a script pick a specific world at first run? I have a script that's world sensitive running and I want to it use the same world every time it restarts, so how could I implement that into the script?
Is it possible to have a script pick a specific world at first run? I have a script that's world sensitive running and I want to it use the same world every time it restarts, so how could I implement that into the script?
Just put WorldInfo into your declare players procedure:
Simba Code:Procedure DeclarePlayers;
Begin
HowManyPlayers := 1;
NumberOfPlayers(HowManyPlayers);
CurrentPlayer := 0;
With Players[0] Do
Begin
Name := 'username';
Pass := 'password';
WorldInfo := [30]; //This will log into world 30
Active := True;
End;
End;
There are currently 1 users browsing this thread. (0 members and 1 guests)