Results 1 to 3 of 3

Thread: Signed? Logging

  1. #1
    Join Date
    Jan 2012
    Posts
    25
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default Signed? Logging

    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?

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

    Default

    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 Script
    Project Rebuild: 90M/170M

  3. #3
    Join Date
    Jan 2012
    Posts
    537
    Mentioned
    1 Post(s)
    Quoted
    16 Post(s)

    Default

    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;

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
  •