Log in

View Full Version : Signed? Logging



Rubiyath
02-20-2012, 12:14 AM
I got script up and everything..but how do i make the bot put in username and pass so it can log in by itself?

PatDuffy
02-20-2012, 12:17 AM
there are options in each script for that, if it's MSI you have to add a player.

In other scripts, there are usually 2-3 lines in "DeclarePlayers" you have to fill out

wister1
02-20-2012, 12:22 AM
there should be something like this in almost every script


Procedure DeclarePlayers;
begin
HowManyPlayers := 1;
NumberOfPlayers(HowManyPlayers);
CurrentPlayer := 0;
with Players[0] do
begin
Name := 'username';
Pass := 'password';
Pin := '0000';
Level[SKILL_HITPOINTS] := HPLevel;
BoxRewards := ['XP','xp','lamp'];
LampSkill := Skill_Runecrafting;
Active := True;
end;
end;