Results 1 to 14 of 14

Thread: Flyingkid101's AutoSpammer!!!!

  1. #1
    Join Date
    Nov 2007
    Posts
    39
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Flyingkid101's AutoSpammer!!!!

    Hi and THANKS for checking out my first script!!!

    I know that this is another Auto Spammer but im really new to this so i tried. :P

    Anyway, here are the instructions, which are also included inside the script

    {**********************This Is My Very First Script!!!!*************************
    **********************Flyingkid101's AutoSpammer v 1.0!!!!***************************
    **********************I N S T R U C T I O N S**********************************
    **********************1. Setup lines 30,38,47,51,52****************************
    **********************2. Specify the Client Window*****************************
    **************************3. Run and Enjoy*****************************************}


    here is the script

    program Flyingkid101AutoTalker;
    {.include SRL/SRL.scar}

    var
    Text: String;
    x: Integer;


    procedure Auto1;
    begin
    Text:= 'Wassup ';//Enter the first thing you want your character to say
    // You can also add text effects such as Flash1
    // If you add effects, dont forget the ":"
    TypeSend(Text);
    end;

    procedure Auto2;
    begin
    Text:= 'YESSIR ';//Enter the second thing you want your character to say
    TypeSend(Text);
    end;

    begin
    x:=0;
    repeat
    x:=x+1;
    Auto1;
    wait(1000+random(1000))///enter how many milliseconds you want the script to
    ///wait before it enters the next set of text

    Auto2;
    wait(1000+random(1000))
    until (x>=10);///Enter how many times you want the script to type the two texts
    /// This number is represented by the '10'
    end.


    PLEASE POST COMMENTS OR SUGGESTIONSS!!!!1 THANKS
    Hi...

  2. #2
    Join Date
    Oct 2007
    Posts
    14
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    nice

  3. #3
    Join Date
    Jan 2007
    Posts
    7
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    nice... i like it

  4. #4
    Join Date
    Nov 2007
    Location
    Estonia
    Posts
    103
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    You have learned the basic of scripting and you can now make better scripts...I think that you will be fine in srl-forum
    Keep going lad

  5. #5
    Join Date
    Jun 2007
    Posts
    71
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Hello..Its a okay first script i think..Its good to know how to type and stuff like that...But in your next script you should set the "settings" at the top of the script eksampel set "Text:=;" and "Wait" at the top so we dont have to look in the hole text after settings...
    (Sorry for my English)

  6. #6
    Join Date
    Nov 2007
    Location
    UK, Suffolk
    Posts
    69
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Good... apart from the fact that it has no FindRS (just a suggestion, it would be good).
    Remember your Creator in the days of your youth, before the days of trouble come and the years approach when you will say, "I find no pleasure in them" - Ecclesiastes 12:1

    http://www.stats.srl-forums.com/sigs/3289.png

  7. #7
    Join Date
    Nov 2007
    Posts
    39
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    thx for all the comments guys!! idk what ill make next though
    Hi...

  8. #8
    Join Date
    Dec 2006
    Location
    Sydney, New South Wales, Australia
    Posts
    4,603
    Mentioned
    15 Post(s)
    Quoted
    42 Post(s)

    Default

    You could use this update i made for your script. You can learn off it:
    SCAR Code:
    {===================================================================]
    [                   FlyingKid101's AutoSpammer                      ]
    [                                                                   ]
    [           NAME        : FlyingKid101's AutoSpammer                ]
    [           WRITER      : FlyingKid101 edited by IP-Drowner         ]
    [           CATEGORY    : Talker                                    ]
    [           DESCRIPTION : Talk's what the user tell's it to talk.   ]
    [           SRL Used    : Any                                       ]
    [           SCAR Used   : Any                                       ]
    [                                                                   ]
    [                   More Scripts can be found at                    ]
    [                        www.SRL-Forums.com                         ]
    [===================================================================]
    [                           Instructions.                           ]
    [===================================================================]
    [ 1. Setup lines 28-33                                              ]
    [ 2. Select the Runescape Client by dragging the crosshair          ]
    [ 3. Watch the script do it's job.                                  ]
    [ 4. To stop the script, press your assigned HotKey                 ]
    [===================================================================}


    program Flyingkid101AutoTalker;
    {.include SRL/SRL.scar}

    const{ant}
      Sen1  = 'Hello!';    //First Sentence to type.
      Sen2  = 'Sup'' All'; //Second Sentence to type.
      Sen3  = 'Levels?';   //Third Sentence to type.
      WTIM  = 1000;        //Wait time in between typing. Use Miliseconds.
      XAM   = 10;          //How many time's to say those three sentences.
      TFAST = False;       //Type super fast? True or False.
     
    var
      x: Integer;

    begin
      ActivateClient;
      x:=0;
      if(TFAST = True) then
        begin
          repeat
            SendKeys(Sen1 + Chr(13));
            Wait(WTIM + Random(789))
            SendKeys(Sen2 + Chr(13));
            Wait(WTIM + Random(871))
            SendKeys(Sen3 + Chr(13));
            Wait(WTIM + Random(601))
            x:=x+1;
          Until(x>=XAM);
        end else
          repeat
            TypeSend(Sen1);
            Wait(WTIM + Random(789))
            TypeSend(Sen2);
            Wait(WTIM + Random(871))
            TypeSend(Sen3);
            Wait(WTIM + Random(601))
            x:=x+1;
          Until (x>=XAM);
    end.

    Hope that could help you in your scripting career
    You may contact me with any concerns you have.
    Are you a victim of harassment? Please notify me or any other staff member.

    | SRL Community Rules | SRL Live Help & Chat | Setting up Simba | F.A.Q's |

  9. #9
    Join Date
    Nov 2007
    Posts
    39
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    yeah it does alot thx, i wont be able to script for awhile though busy with schoolwork and such
    Hi...

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

    Default

    Definitely need to use indents. It makes it much neater and easier to read.

  11. #11
    Join Date
    Dec 2007
    Location
    Los Angeles
    Posts
    13
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    nice

  12. #12
    Join Date
    Oct 2007
    Location
    england
    Posts
    57
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Sweet

    Not bad for a starter,you know all the basics and have the ability to become a a master S.R.L scripterh):

  13. #13
    Join Date
    Nov 2007
    Posts
    39
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    l
    Hi...

  14. #14
    Join Date
    Dec 2007
    Posts
    16
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Itis workibg so good.,

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. My protest autospammer
    By ElPolloFeo92 in forum News and General
    Replies: 5
    Last Post: 12-17-2007, 01:15 AM
  2. Pancakes' Autospammer
    By Pancakes in forum RS3 Outdated / Broken Scripts
    Replies: 3
    Last Post: 07-02-2007, 11:00 AM
  3. My first scripts (AutoLogIn and AutoSpammer)
    By Pwnt by Pwnt in forum RS3 Outdated / Broken Scripts
    Replies: 11
    Last Post: 03-06-2007, 03:38 AM
  4. AutoSpammer
    By Infantry001 in forum RS3 Outdated / Broken Scripts
    Replies: 4
    Last Post: 12-16-2006, 04:20 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
  •