Results 1 to 7 of 7

Thread: [SRL4]Shut up! (autotalker&login)

  1. #1
    Join Date
    Oct 2007
    Location
    ~Australia~
    Posts
    16
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    [SRL4]Shut up! (autotalker&login)

    Well this is my first script i have made this is basically a auto talker with login please post comments, bugs and advice on this script
    thanks

    looking foraward to reviews

    SCAR Code:
    //Please do not post this script without my permission
     //Autotype with Login Created by elite_h4x
     //special thanks to Hobbit for helping me with this script
    program thename;
    {.include SRL/SRL.scar}

    const TheMessage='ddd';//This is the message u want it to say
      HowManyMsgs=2;          //This is how many times u want it to say. it set-1 for unlimited
      Username='pure might12'; //the name of the acc ur using
      Password='*****';     //the password
      UseLogin= 'True';     // Set as True or False
    var
      x:Integer;

    procedure Login;
    begin        //This is the login precedure
      MoveMouse(445,289);
      wait(100+random(250));
      ClickMouse(445,289,true);
      wait(200+random(200));
      typesend (Username);
      typesend (Password);
      MoveMouse (299,319);
      ClickMouse(299,319,true);
      wait(4000+random(500));
      MoveMouse (381,333);
      ClickMouse(381,333,true);
      wait(2000+random(2000));
    end;

    procedure Talk;
    begin
      x:=0;
      repeat // the beauty of the untill loop
        wait(1000+random(750));
        typesend (TheMessage);
        wait(250+random(250));
        x:= x + 1;
      until(x >= (HowManyMsgs))
    end;

    begin
      if(UseLogin= 'True')then
        begin
          Login;
          Talk;
        end;
      if(UseLogin= 'False')then
        begin
          Talk;
        end;
    end.
    Getting to 99 wcing

  2. #2
    Join Date
    Apr 2007
    Location
    Adelaide, Australia
    Posts
    160
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Move Mouse and Click Mouse? Why not use the propper SRL functions Mouse and MMouse? Other than that, it looks like a good script. Maybe next time you could make it say more messages and in random orders.
    Are YOU into things to do with gaming consoles, glitches, mods or just meeting new people?
    Join Se7ensins and learn how to do the above!
    http://www.fenjer.com/adnan/SRLStats/824.png

  3. #3
    Join Date
    Jul 2007
    Location
    Right now? Chair.
    Posts
    8,488
    Mentioned
    3 Post(s)
    Quoted
    12 Post(s)

    Default

    SCAR Code:
    if UseLogin= 'True' then
      begin
        Login;
        Talk;
      end else
        Talk;

    ever heard of if and else? you might wanna check those out, else is really useful.
    and another suggestion, since you're going to make it talk anyway, why not do it like this?

    SCAR Code:
    if UseLogin = 'True' then Login;
    Talk;
    this means it'll talk independently from login being true or not.

    I & I know Zion. It is in the spirit, body and mind of every one of us
    RMouse(obj: TMSIObject): boolean;

  4. #4
    Join Date
    Oct 2007
    Location
    ~Australia~
    Posts
    16
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    thanks for the response guys keep em coming
    Getting to 99 wcing

  5. #5
    Join Date
    Jul 2007
    Posts
    29
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Line 4: [Error] (4:9): Identifier expected in script doesn't work on my scar

  6. #6
    Join Date
    Jun 2007
    Location
    La Mirada, CA
    Posts
    2,484
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    there already is a logging in process in SRL this is a worthless thread and script sry....

    "Failure is the opportunity to begin again more intelligently" (Henry Ford)


  7. #7
    Join Date
    Oct 2007
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Line 4: [Error] (4:9): Identifier expected in script doesn't work on my scar

    same too

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SRL4#4]Varrock West Oak Chopper!![Srl4#4]
    By [-jesus-] in forum RS3 Outdated / Broken Scripts
    Replies: 12
    Last Post: 01-09-2008, 05:11 PM
  2. shut down pc
    By sidishere in forum OSR Help
    Replies: 23
    Last Post: 11-03-2007, 06:43 AM
  3. Internet Shut Off. :(
    By Lokito in forum News and General
    Replies: 5
    Last Post: 10-10-2007, 10:49 PM
  4. Driger1592.com shut down
    By Jornak in forum News and General
    Replies: 12
    Last Post: 10-09-2006, 10:44 AM

Posting Permissions

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