
Originally Posted by
k9thebeast
How come
Players[0].WorldInfo := [Players[0].Member, 2, False];
Just logs me into a random world? It wont log into world 2? This time it goes and selects a specific world, but never the world I intended
Simba Code:
Const
World = 88; //Enter world you want to use script in.
Procedure DeclarePlayers;
Begin
HowManyPlayers := 1;
NumberOfPlayers(HowManyPlayers);
CurrentPlayer := 0;
Players[0].Name :=''; // Enter your username here.
Players[0].Pass :=''; // Enter your password here.
Players[0].Nick :=''; // Enter nickname for progress report.
Players[0].Active:=True;
Players[0].BoxRewards := ['Xp', 'mote', 'ostume', 'oins'];
Players[0].WorldInfo := [False, World];
End;
That is the declare players procedure I use for most of my scripts. Just make sure to have World as a constant and then you will log into whatever world you put it equal to.