Results 1 to 5 of 5

Thread: S1's Awesome Autotalker, Teh Rambler.

  1. #1
    Join Date
    Feb 2008
    Location
    Australia
    Posts
    253
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default S1's Awesome Autotalker, Teh Rambler.

    TEH RAMBLER



    This is my Autotalker. Easy to use and works until you stop it. Please give Feed back and Rate.
    W00T Timer is awesome!!! He's teaching me to script!
    http://www.stats.srl-forums.com/sigs/4572.png

  2. #2
    Join Date
    Apr 2008
    Posts
    89
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    It works! May I make some suggestions though...

    It would be great if it had a little user interface in which someone could type a message they want spammed over and over perhaps and maybe a checkbox for a color and animation they want. That way you dont need to keep recompiling it just to get ur mesage across. Also it would be cool if you added a stop button on it maybe. Just 2 cents though.

    Other than that it works as its supposed to. Nice work!

  3. #3
    Join Date
    Feb 2008
    Location
    Australia
    Posts
    253
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    k thanks alot for the feedback, its just that i just started scripting and im not real good. so im not exactly sure how to do what your saying...
    W00T Timer is awesome!!! He's teaching me to script!
    http://www.stats.srl-forums.com/sigs/4572.png

  4. #4
    Join Date
    Feb 2008
    Location
    NSW, Australia
    Posts
    149
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i noticed you don't have srl stats or a progress report in there. Maybe you should add that? So you could have something to report on? I'll test soon.

    EDIT:
    Tested and it works, but like I said, stats and proggie would be nice.

  5. #5
    Join Date
    May 2007
    Location
    England
    Posts
    4,140
    Mentioned
    11 Post(s)
    Quoted
    266 Post(s)

    Default

    You could change this:

    SCAR Code:
    const
     Message1=('Cyan:');           //Type the colour you want your text to appear in between the ' '
     Message2=('Shake:');          //Type the style you want your text to appear in between the ' '
     Message3=('W00t');    // Type you message in between the ' '
                                  // You can leave any of the above blank if you wish.

    procedure RambleOn;
     begin
    sendkeyssilent(Message1)
    sendkeyssilent(Message2)
    sendkeyssilent(Message3)
    sendkeyssilent(chr(13));    // This is the enter button.
    wait (4500+random(50));     // This is the time between each time you say the text.
                                // 1000 milliseconds = 1 second. Feel free to change.

    To this:

    SCAR Code:
    const
      Message = 'Your Text Here';
      Colour = 'The Colour You Want Your Text:';
      Effect = 'The Effect That Your Text Will Have:';

      WaitTime = 3000; //Time to wait between each time your message gets typed
      RandomWait = 1000; //Amount of randomness to add onto WaitTime

    procedure RambleOn;
      begin
    Sendkeyssilent(Colour+Effect+Message+Chr(13))
    Wait (WaitTime + random (RandomWait));

     end;

    This would make it easier for the user to use, and set their own setting without having to scroll through the script.
    <3

    Quote Originally Posted by Eminem
    I don't care if you're black, white, straight, bisexual, gay, lesbian, short, tall, fat, skinny, rich or poor. If you're nice to me, I'll be nice to you. Simple as that.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Hello...i'm awesome
    By WithoutFear in forum Who Are You ? Who ? Who ?
    Replies: 16
    Last Post: 07-15-2008, 07:19 PM
  2. S1's Awesome Autotalker, Teh Rambler
    By shrubie1 in forum First Scripts
    Replies: 4
    Last Post: 04-22-2008, 02:37 PM
  3. The World is Just Awesome
    By R0b0t1 in forum The Bashing Club / BBQ Pit
    Replies: 0
    Last Post: 04-20-2008, 02:22 AM
  4. Nightmare's Awesome AutoTalker
    By Nightmare0 in forum RS3 Outdated / Broken Scripts
    Replies: 1
    Last Post: 04-18-2008, 12:19 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
  •