Results 1 to 12 of 12

Thread: xCheWy's SMART Spammer and AUTO Spam

  1. #1
    Join Date
    Oct 2007
    Location
    #srl
    Posts
    6,102
    Mentioned
    39 Post(s)
    Quoted
    62 Post(s)

    Default xCheWy's SMART Spammer and AUTO Spam

    N C D S's SMART Spammer



    Features/What it does!

    -Uses SMART
    -Humanlike behavior
    -Keeps you logged in while telling the area what you need to say
    -IS MY FIRST SCRIPT
    -This is the FIRST version but there will be more


    UPDATES:

    -want to add an auto trader


    NOTE!
    This is not a good script for tradeing (as it uses SMART and does not yet have auto trade) i suggest useing this script for advertiseing (example: buying rune arrows in G.E. max price!) atleast until i figure out the auto trade part of it.

    Thanks and ENJOY!




    N C D S's AUTO Spam



    Features/What it does
    -Unlike SMART Spammer this one uses a regular RuneScape Client (or scarscape)
    -It talks with Human Like movement
    - i made this one so people could use it to trade while i work on SMART Spammer


    UPDATES:
    -Probabaly wont get any ( shouldnt need any)
    -if you want auto trade then wait for my SMART Spammer to be done
    - if you have any other suggestions/questions feel free to ask.

    HAVE FUN!

  2. #2
    Join Date
    Jan 2008
    Location
    NC, USA.
    Posts
    4,429
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    You have SetupSRL; in your main loop twice Hmmm, you don't use [TimeForPlayer = W/e] in your script. Cool, you have declare players, so all's you need is FindNormalRandoms in it.

    About timeforPlayer, you could do this. (This is a better main loop)

    SCAR Code:
    begin
      setupsrl;
      SmartSetup(World, False, True, False);
      SetTargetDC(SmartGetDC);
      SetupSRL;
      DeclarePlayers;
      lolz;
      repeat
        MarkTime(ThisTime)
        repeat
          TellDemHoes;
          DontGetBanned;
          StayLoggedIn;
        until (Not(LoggedIn))or MarkTime(ThisTime > (TimeForPlayer * 1000 * 60))
        Logout;
        Players[CurrentPlayer].Active := True;
        NextPlayer(Players[CurrentPlayer].Active);
      until(false);
    end.
    Quote Originally Posted by irc
    [00:55:29] < Guest3097> I lol at how BenLand100 has become noidea
    [01:07:40] <@BenLand100> i'm not noidea i'm
    [01:07:44] -!- BenLand100 is now known as BenLand42-
    [01:07:46] <@BenLand42-> shit
    [01:07:49] -!- BenLand42- is now known as BenLand420
    [01:07:50] <@BenLand420> YEA

  3. #3
    Join Date
    Oct 2007
    Location
    #srl
    Posts
    6,102
    Mentioned
    39 Post(s)
    Quoted
    62 Post(s)

    Default

    how do i set that up tho because i dont have MarkTime or ThisTime set up as variables or anything anywhere yet.

  4. #4
    Join Date
    Jan 2008
    Location
    NC, USA.
    Posts
    4,429
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Add
    SCAR Code:
    ThisTime : Integer;
    under your var's. Marktime is in SRL.
    Quote Originally Posted by irc
    [00:55:29] < Guest3097> I lol at how BenLand100 has become noidea
    [01:07:40] <@BenLand100> i'm not noidea i'm
    [01:07:44] -!- BenLand100 is now known as BenLand42-
    [01:07:46] <@BenLand42-> shit
    [01:07:49] -!- BenLand42- is now known as BenLand420
    [01:07:50] <@BenLand420> YEA

  5. #5
    Join Date
    Oct 2007
    Location
    #srl
    Posts
    6,102
    Mentioned
    39 Post(s)
    Quoted
    62 Post(s)

    Default

    hmm when i do that i get this

    Line 1: [Error] (1:1): Variable Expected in script

    i cant figure out why

    this is what i put right?

    var
    ThisTime : integer;

    i put that right after all the constants

  6. #6
    Join Date
    Jan 2008
    Location
    NC, USA.
    Posts
    4,429
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Crap I typed the wrong thing

    This should work, (MainLoop, including the var's)

    SCAR Code:
    var
      ThisTime : Integer;

    begin
      setupsrl;
      SmartSetup(World, False, True, False);
      SetTargetDC(SmartGetDC);
      SetupSRL;
      DeclarePlayers;
      lolz;
      repeat
        MarkTime(w)
        repeat
          TellDemHoes;
          DontGetBanned;
          StayLoggedIn;
        until (Not(LoggedIn))or(TimeFromMark(ThisTime) > (TimeForPlayer * 1000 * 60))
        Logout;
        Players[CurrentPlayer].Active := True;
        NextPlayer(Players[CurrentPlayer].Active);
      until(false);
    end.
    Quote Originally Posted by irc
    [00:55:29] < Guest3097> I lol at how BenLand100 has become noidea
    [01:07:40] <@BenLand100> i'm not noidea i'm
    [01:07:44] -!- BenLand100 is now known as BenLand42-
    [01:07:46] <@BenLand42-> shit
    [01:07:49] -!- BenLand42- is now known as BenLand420
    [01:07:50] <@BenLand420> YEA

  7. #7
    Join Date
    Oct 2007
    Location
    #srl
    Posts
    6,102
    Mentioned
    39 Post(s)
    Quoted
    62 Post(s)

    Default

    Line 105: [Error] (16319:10): Unknown identifier 'w' in script

    MarkTime (w) is whats on the line. what is that 'w' for?

  8. #8
    Join Date
    Jan 2008
    Location
    NC, USA.
    Posts
    4,429
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Whoops, change 'w' to 'ThisTime'.
    Quote Originally Posted by irc
    [00:55:29] < Guest3097> I lol at how BenLand100 has become noidea
    [01:07:40] <@BenLand100> i'm not noidea i'm
    [01:07:44] -!- BenLand100 is now known as BenLand42-
    [01:07:46] <@BenLand42-> shit
    [01:07:49] -!- BenLand42- is now known as BenLand420
    [01:07:50] <@BenLand420> YEA

  9. #9
    Join Date
    Oct 2007
    Location
    #srl
    Posts
    6,102
    Mentioned
    39 Post(s)
    Quoted
    62 Post(s)

    Default

    lol alright you threw me off with that.

    ahh great now tho it works perfect!
    thank you.

    now once i can get an auto trader in there working ill post a new updated version!


    rep+ for the help!

  10. #10
    Join Date
    Jan 2008
    Location
    NC, USA.
    Posts
    4,429
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Cool! Thanks. Take a look at Trade.scar in Mics folder of SRL =)
    Quote Originally Posted by irc
    [00:55:29] < Guest3097> I lol at how BenLand100 has become noidea
    [01:07:40] <@BenLand100> i'm not noidea i'm
    [01:07:44] -!- BenLand100 is now known as BenLand42-
    [01:07:46] <@BenLand42-> shit
    [01:07:49] -!- BenLand42- is now known as BenLand420
    [01:07:50] <@BenLand420> YEA

  11. #11
    Join Date
    Oct 2007
    Location
    #srl
    Posts
    6,102
    Mentioned
    39 Post(s)
    Quoted
    62 Post(s)

    Default

    alright thanks man im hopefully going to be done with it soon!

  12. #12
    Join Date
    Oct 2008
    Location
    I Forgot
    Posts
    193
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Auto Spammer 4 fun
    By insanomano in forum First Scripts
    Replies: 3
    Last Post: 10-08-2009, 05:12 AM
  2. Auto Spam!!!
    By Naum in forum RS3 Outdated / Broken Scripts
    Replies: 11
    Last Post: 07-17-2009, 05:47 PM
  3. Popc0rn's Auto-Spammer Tutorial!
    By PoPC0rN in forum Outdated Tutorials
    Replies: 5
    Last Post: 01-16-2009, 01:28 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
  •