View Full Version : How do i get the script to log me in
driftz
12-05-2011, 08:17 PM
Im using the silentspinner by silentspy, and it only runs for a shot amount of time atm, and i was wondering how i get it to log me back in so i dont have to keep doing it. Ive already made my account stuff on msi, but it still wont log me into runescape. please help me
PatDuffy
12-05-2011, 08:41 PM
Im using the silentspinner by silentspy, and it only runs for a shot amount of time atm, and i was wondering how i get it to log me back in so i dont have to keep doing it. Ive already made my account stuff on msi, but it still wont log me into runescape. please help me
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.
Littma
12-06-2011, 08:00 PM
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.
http://img189.imageshack.us/img189/2946/58212899.png
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):
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!
Powered by vBulletin® Version 4.2.1 Copyright © 2024 vBulletin Solutions, Inc. All rights reserved.