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?
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?
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
Currently: Working on Defending&Attacking in my Castle-Wars ScriptProject Rebuild: 90M/170M
there should be something like this in almost every script
Simba Code: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;
There are currently 1 users browsing this thread. (0 members and 1 guests)