Log in

View Full Version : Quick Question



lala151
05-22-2012, 12:15 AM
Hey guys I'm new here and I just have a quick question about this program.

I was wondering how do I like type in my username and password so it signs me in automatically?

The only way I can bot with this is if I manually type it in and I bet theres a way for the bot to do it for you.

So how do you do it?

Thanks in advance.

YoHoJo
05-22-2012, 12:17 AM
Start the script.
Once SMART pops up (the runescape client) press stop on the script.
Let runescape load.
Click the Disable SMART button under the client.
Log in, select world, etc, and wait until you can see your character.
Click the enable smart button.
Press play on the script.

I can assure you 100% though that all (of the most popular/used) scripts are 100% safe, since everything here is 100% open source no hacking/keylogging gets by!

Abu
05-22-2012, 03:40 PM
lol YoHoJo I think you misunderstood the question?

To have the bot log in for you automatically, find this in your script and then fill it in appropriately:

Procedure DeclarePlayers;
begin
HowManyPlayers := 1;
NumberOfPlayers(HowManyPlayers);
CurrentPlayer := 0;

Players[0].Name :=''; //your username within ''
Players[0].Pass :=''; //your password within ''
Players[0].Nick :=''; // 3-4 letters from you username (not first letter) within''
Players[0].Active:=True;
end;

Then save that so it will always log you into that account when you run it.

lala151
05-22-2012, 04:31 PM
lol YoHoJo I think you misunderstood the question?

To have the bot log in for you automatically, find this in your script and then fill it in appropriately:

Procedure DeclarePlayers;
begin
HowManyPlayers := 1;
NumberOfPlayers(HowManyPlayers);
CurrentPlayer := 0;

Players[0].Name :=''; //your username within ''
Players[0].Pass :=''; //your password within ''
Players[0].Nick :=''; // 3-4 letters from you username (not first letter) within''
Players[0].Active:=True;
end;

Then save that so it will always log you into that account when you run it.
Thank you.