Results 1 to 3 of 3

Thread: How do i get the script to log me in

  1. #1
    Join Date
    Dec 2011
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default How do i get the script to log me in

    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

  2. #2
    Join Date
    Feb 2011
    Location
    Earth
    Posts
    1,784
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by driftz View Post
    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.

    Currently: Working on Defending&Attacking in my Castle-Wars Script
    Project Rebuild: 90M/170M

  3. #3
    Join Date
    Jan 2010
    Location
    U.S.
    Posts
    72
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by PatDuffy View Post
    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!

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •