Results 1 to 6 of 6

Thread: Small script help reeeeal quick

  1. #1
    Join Date
    Mar 2007
    Location
    Eugene, Oregon
    Posts
    195
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Small script help reeeeal quick

    Well heres my story real quick. I'm making an auto tele'er and I am really nooby and I need the SRL declare players script after
    SCAR Code:
    {.inlcude SRL/SRL.scar
    and I also want to ask if anyone has a script for an anti random for the room you get sent to after tele'ing for a long time. I dont know where to look so im asking here. Thanks for your help. I can get screen shots of the room if needed.

  2. #2
    Join Date
    Jan 2007
    Location
    Illinois.. >.<
    Posts
    1,158
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    yes, place the DeclarePlayers procedure after
    SCAR Code:
    {.include SRL\SRL.scar}
    For the abyss thing, search for Wizzup's Ess miner, download his script and look through the code because i know that he had one..

  3. #3
    Join Date
    Mar 2007
    Posts
    3,681
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    procedure DeclarePlayers;
    begin

    SRLID := '***';
    SRLPassword := '*****';
    HowManyPlayers := 0;
    CurrentPlayer := StartPlayer;
    NumberOfPlayers(HowManyPlayers); // set arraylength

    Players[0].Name :='';
    Players[0].Pass :='';
    Players[0].Nick :='';
    Players[0].Active:=true;

    end;

    Something like that m8

  4. #4
    Join Date
    Mar 2007
    Location
    Eugene, Oregon
    Posts
    195
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Hey thanks guys

  5. #5
    Join Date
    Jan 2007
    Location
    Illinois.. >.<
    Posts
    1,158
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    No problem. Post again if you need any more help. I or many other members will gladly help you out.

  6. #6
    Join Date
    Mar 2007
    Location
    Eugene, Oregon
    Posts
    195
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Alright i got another one...

    SCAR Code:
    var
    name: string;
    pass: string;

    Procedure DeclarePlayersCustom;
    Begin
    name:= 'pcff64';  // Account Name.
    pass:= '6549873218520';  // Account Password.
    end;


    Procedure LoginCustom;
    Begin
    ActivateClient;
    Wait(2000);
    MoveMouseSmooth(451+random(40), 290+random(10));
    wait(500);
    ClickMouse(451+random(40), 290+random(10), True);
    Sendkeys(name);
    wait(500);
    MoveMouseSmooth(306+random(3), 262+random(2));
    wait(200);
    ClickMouse(307, 263, True);
    wait(500);
    Sendkeys(pass);
    wait(6000);
    end;

    Say this is a custom login procedure... It compiles and clicks and all... But it won't type in the name or pass variables. Is there a reason why and a solution to make the custom login work?

    EDIT: Ahh nevermind i figured it out myself. SORRY FOR THE BUMP! >.<

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Need help with small part of script!
    By vikrant60 in forum OSR Help
    Replies: 3
    Last Post: 04-28-2008, 07:28 AM
  2. Small Quick Question
    By osmm in forum OSR Help
    Replies: 8
    Last Post: 01-12-2008, 11:31 PM

Posting Permissions

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