Page 1 of 2 12 LastLast
Results 1 to 25 of 27

Thread: Simple Auto Talker

  1. #1
    Join Date
    Oct 2011
    Location
    UK
    Posts
    1,322
    Mentioned
    2 Post(s)
    Quoted
    1 Post(s)

    Default Simple Auto Talker


    What does this script do?
    This script logs in using a pre defined username/password and then says up to 5 (or more if you know how) phrases at whatever speed you want.

    How do I run it?
    You should set-up Simba following the instructions at the link above. Then download it below, you can either open the downloaded file with simba or in simba click File > Open.

    Can I run it on more than one account at the same time?
    Yes, just open more than one copy of Simba

    Does this use S.M.A.R.T.?
    Yes it does, but if you don't want to I am sure you know how to stop it

    This script is rubbish, there is a better alternative...
    This isn't even supposed to be useful script, this is just about me getting better at scripting, please try it out and post your results, but I don't expect this to become a popular script, If you have an idea you would like me to try then message me.

    I want to use your Script but I can't get it to work
    Please post the error below if you think it is to do with my script, if you think it is a client problem then post it in the client help section.

    I have an idea of how to make this better
    Please post it below and I will add it if I think it is good



    To add:
    1) Randomisation (so each message can be slightly different)
    2) Multiple phrases (why not?)
    3) whatever you want me to add... (post below)

    Last edited by putonajonny; 01-10-2012 at 05:23 PM.

  2. #2
    Join Date
    Nov 2011
    Posts
    130
    Mentioned
    0 Post(s)
    Quoted
    11 Post(s)

    Default

    Can't someone just use Garyshood Autotyper+Autoclicker?
    Anyhow, Just being honest about this, that it's completely useless or atleast pretty useless. But i'm sure someone will like it.

  3. #3
    Join Date
    Oct 2011
    Location
    UK
    Posts
    1,322
    Mentioned
    2 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by Invalid Gold View Post
    Can't someone just use Garyshood Autotyper+Autoclicker?
    Anyhow, Just being honest about this, that it's completely useless or atleast pretty useless. But i'm sure someone will like it.
    I am sure to 99.9999% of people this is useless, this is just about me learning how to write better scripts so I am just looking for constructive feedback

  4. #4
    Join Date
    Nov 2011
    Posts
    130
    Mentioned
    0 Post(s)
    Quoted
    11 Post(s)

    Default

    Well, i guess this is just your first script? Overall, very nice.

  5. #5
    Join Date
    Oct 2011
    Location
    UK
    Posts
    1,322
    Mentioned
    2 Post(s)
    Quoted
    1 Post(s)

    Default

    version 102 submitted...
    Last edited by putonajonny; 11-13-2011 at 12:02 PM.

  6. #6
    Join Date
    Apr 2007
    Location
    Lithuania
    Posts
    384
    Mentioned
    0 Post(s)
    Quoted
    15 Post(s)

    Default

    Then all of a sudden, hundreds of freshly registered users with foreign looking usernames showing interest in this. xD They still spam their websites x(

  7. #7
    Join Date
    Mar 2008
    Location
    Look behind you.
    Posts
    795
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Don't bash the guy. It's great that he's learning, and an autotalker is the easier way to learn. Here's some tips:
    Simba Code:
    Procedure UsernameandPass;
    Begin
      Mouse(543, 324,3,3,true);
      TypeSend(Username);
      wait(500+Random(200));
      Mouse(543, 372,3,3,true);
      wait(100+Random(50));
      TypeSend(Password);
    end;

    Procedure DoLogin;
    var
      x, y : Integer;
    Begin
      Mouse(445, 413,20,2,true);
      WriteLn('Clicked Login');
      WriteLn('Waiting For Lobby!');
        repeat
          wait(2000)
          LoggedHalf := (FindColorTolerance( x, y, 4357011, 270, 449, 407, 607, 10))
        until(LoggedHalf=True);
      WriteLn('Found Lobby')
      Wait(500+Random(200));
      Mouse(383, 462,5,5,true);
         repeat
           wait(2000)
           LoggedHalf := (FindColorTolerance(x, y, 726554, 270, 449, 407, 607, 10))
         until(LoggedHalf=False)
    end;
    Login functions are already included . Just use this:
    Simba Code:
    procedure DeclarePlayers;
    Begin
      HowManyPlayers := 2;
      NumberOfPlayers( HowManyPlayers);
      CurrentPlayer := 0;

      Players[0].Name :='';
      Players[0].Pass :='';
      Players[0].Nick :='';//3-4 phrase from your name Ex. "ownage" = "nag"
      Players[0].Active := True;
    End;
    You can just delcare DeclarePlayers at the beginning of your script. Then you can use LoginPlayer or LogOut. There's more, but those are the most useful.
    Also, the begins and ends aren't required for it to work in a simple if-then statement with only 1 action. Example =
    Simba Code:
    if (JagexKissAss = True) Then
        WriteLn('You Disgust Me...')   //Just Kidding
      else
          WriteLn('Almost Done...');
    Just don't put a ';' unless you're ending your if-then statement.

    E: With booleans you can just say
    Simba Code:
    if (JagexKissAss) then
    It's like saying :
    Simba Code:
    if (WeChopTheTree) then
        FindAnotherTree;
    if you want it to check for a false, just do
    Simba Code:
    if not(JagexKissAss) then
    That just means if the boolean is not true then..
    Last edited by DeSnob; 11-13-2011 at 03:27 PM.

  8. #8
    Join Date
    Apr 2007
    Location
    Lithuania
    Posts
    384
    Mentioned
    0 Post(s)
    Quoted
    15 Post(s)

    Default

    Not bashing : )

  9. #9
    Join Date
    Mar 2007
    Posts
    3,116
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    This script can be shortened quite a large amount. Like by 50% using SRL's login procedure and combining Talk and TalkFast.

    Its great seeing some new scripters though.

  10. #10
    Join Date
    Jan 2011
    Posts
    350
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    please add detection so it can recognise what people say and so it can respond also randomise the Wtime

  11. #11
    Join Date
    Oct 2011
    Location
    UK
    Posts
    1,322
    Mentioned
    2 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by mika View Post
    please add detection so it can recognise what people say and so it can respond also randomise the Wtime

    I'll include the random wait time, how would I make it respond? Just a big database of responses or would the user input them?

  12. #12
    Join Date
    Dec 2011
    Posts
    3
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    would love to see this fixxed.

  13. #13
    Join Date
    Oct 2011
    Location
    Chicago
    Posts
    3,352
    Mentioned
    21 Post(s)
    Quoted
    437 Post(s)

    Default

    Its a great idea, but I sort of fear this kind of script
    This is a "spammers" dream O.o




    Anti-Leech Movement Prevent Leeching Spread the word
    Insanity 60 Days (Killer workout)
    XoL Blog (Workouts/RS/Misc)

  14. #14
    Join Date
    Jan 2012
    Posts
    4
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    it's not working for me.

  15. #15
    Join Date
    Oct 2011
    Location
    UK
    Posts
    1,322
    Mentioned
    2 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by cooldude8870 View Post
    it's not working for me.
    I haven't updated it since the login screens changed sorry

  16. #16
    Join Date
    Jan 2012
    Posts
    124
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    Is there to way to enable it to work with clients other than SMART? (sorry for the stupid question).

  17. #17
    Join Date
    Oct 2011
    Location
    UK
    Posts
    1,322
    Mentioned
    2 Post(s)
    Quoted
    1 Post(s)

    Default

    Updated, not tested though

  18. #18
    Join Date
    Dec 2011
    Posts
    3
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    doesnt work

  19. #19
    Join Date
    Oct 2011
    Location
    UK
    Posts
    1,322
    Mentioned
    2 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by Jordan323 View Post
    doesnt work
    Leech alert, you can't come here and just post "doesn't work" that gives me no information to fix it, I would help but with somebody with 3 posts saying that just discourages me completely if you are the kind of people that are going to use this. Fix it yourself

  20. #20
    Join Date
    Jan 2012
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    is there any chance that this is out of date or am i doing something wrong, i keep getting this error:

    Compiled successfully in 1279 ms.
    Error: Out Of Range at line 111

    if someone can help me i would really appreciate it, thanks in advance

  21. #21
    Join Date
    Oct 2011
    Location
    UK
    Posts
    1,322
    Mentioned
    2 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by rabatrix View Post
    is there any chance that this is out of date or am i doing something wrong, i keep getting this error:

    Compiled successfully in 1279 ms.
    Error: Out Of Range at line 111

    if someone can help me i would really appreciate it, thanks in advance
    This means you aren't setting the players up correctly, but if you are sure you are just put // at the start of line 111

  22. #22
    Join Date
    Nov 2011
    Posts
    8
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Error: Out Of Range at line 41
    The following DTMs were not freed: [SRL - Lamp bitmap, 1]
    The following bitmaps were not freed: [SRL - Mod bitmap, SRL - Admin bitmap, SRL - Flag bitmap]

  23. #23
    Join Date
    Feb 2012
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Exception in Script: Unable to find file 'SRL/SRL/Misc/Smart.scar' used from ''
    mine keeps saying that,what do I do? :L

  24. #24
    Join Date
    Jan 2012
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    change the .scar to .simba at the top of the script

  25. #25
    Join Date
    Feb 2012
    Posts
    317
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Error] (79:53): Invalid number of parameters at line 78
    Compiling failed.

Page 1 of 2 12 LastLast

Thread Information

Users Browsing this Thread

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

Posting Permissions

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