Results 1 to 6 of 6

Thread: Running Help

  1. #1
    Join Date
    Aug 2007
    Posts
    328
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Running Help

    I want to run this

    Code:
    program AutoTalker;
    
    const
    Message1='Flash2:wave: Selling ************ ******';
    
    procedure Typed_Message;
    begin
    Wait(1000)
    Writeln(Message1);
    end;
    
    begin
    repeat
    Typed_Message;
    until(false)
    end.
    On top of the runescape screen and not the bottom of the scar screen(where all the reports pop of for scripts)
    how can i do this?

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

    Default

    Writeln means to write in the debug bow (the bottom of the scar window). If you want it to type in rs, use TypeSend. To do that you also need to declare SRL at the top of your script. You can use SendKeys which is a non-SRL function, although you are probebly guarenteed to get banned pretty fast.

    SCAR Code:
    program AutoTalker;
    {.include SRL/SRL.scar}

    const
    Message1='Flash2:wave: Selling ************ ******';

    procedure Typed_Message;
    begin
      Wait(1000)
      TypeSend(Message1);
    end;

    begin
      repeat
        Typed_Message;
      until(false)
    end.
    Try testing it. It should work now and shouldn't get you banned unless you use 24/7.

    Tazzie
    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
    Feb 2007
    Location
    PA, USA
    Posts
    5,240
    Mentioned
    36 Post(s)
    Quoted
    496 Post(s)

    Default

    SCAR Code:
    program AutoTalker;
    {.include SRL/SRL.scar}
     
    const
    Message1='Flash2:wave: Selling ************ ******';
     
    procedure Typed_Message;
    begin
      Wait(9000+random(200))//this adds a random amount of time in between type sends
      TypeSend(Message1);
    end;
     
    begin
      repeat
        Typed_Message;
      until(IsFkeyDown(8))// this makes it stop if the press F8
    end.

  4. #4
    Join Date
    Aug 2007
    Posts
    328
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Ahhh thanks =)

  5. #5
    Join Date
    Dec 2007
    Posts
    193
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Someone close this ?
    ~ Rs-Gp-4U
    _____________________________________________

    Bux.To! Sign Up Easy Money!

  6. #6
    Join Date
    Dec 2006
    Location
    Copy pastin to my C#
    Posts
    3,788
    Mentioned
    8 Post(s)
    Quoted
    29 Post(s)

    Default

    Also, this is the wrong section, this section is for tutorials about How To Auto, not for questions about it.

    In future, please make sure you post in the correct section, in this case it would've been scripting help.

    Pseudoclosed.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Running more than 1 S.M.A.R.T's. * how to auto
    By Zyt3x in forum Outdated Tutorials
    Replies: 13
    Last Post: 09-03-2008, 02:49 AM
  2. Law Running
    By kottonmouth in forum RS3 Outdated / Broken Scripts
    Replies: 2
    Last Post: 10-14-2007, 06:34 PM
  3. help with running
    By Jake_453 in forum OSR Help
    Replies: 3
    Last Post: 05-17-2007, 11:33 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
  •