
Originally Posted by
PatDuffy
Ok to clear things up, that script you are trying to use is independent, meaning it isn't part of MSI. Second, somewhere in the beginning of the script under DeclarePlayers are line you fill in with your accounts username and password. Other than that, the procedures to log a player in are included in the code 95% of the time.
It all depends on the script developer and his or her scripting style. I'd suggest just to read the instructions on the first post where you download the bot and read the instructions when the bot code is visible in Simba. Generally, there should be instructions within the first part on how to run the script properly.
You can also look under FunctionList to find the list of functions and or procedures within the script.

If you see DeclarePlayers anywhere in the FunctionList, double click DeclarePlayers and fill in the information. It should automatically log you into the game. The code should look similar to this (Varies by script developer):
Code:
procedure DeclarePlayers;
begin
HowManyPlayers := 1;
NumberOfPlayers(HowManyPlayers);
CurrentPlayer := 0;
Players[0].Name := ''; // Username
Players[0].Pass := ''; // Password
Players[0].Nick := ''; // 3-4 lowercase letters from username; used for random event detection
Players[0].Active := True; // Set to true if you want to use Player 0
Players[0].Pin := ''; // Leave blank if the player doesn't have a bank pin
end;
I hope this helped, if you have anymore questions feel free to ask!