Results 1 to 24 of 24

Thread: Da Der Der Proudly Presents: My AutoTalker Function - Almost every skill!

  1. #1
    Join Date
    Nov 2006
    Posts
    189
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Da Der Der Proudly Presents: My AutoResponder Function - Almost every skill!

    I know this is not a script, but I didn't know where to put it.

    EDIT - JUST RELEASED A NEW VERSION! A FEW MORE THINGS TO AUTO RESPOND TO NOW!


    ALSO, YOU NEED THE 2 OTHER ATTACHMENTS FOR THIS TO WORK PROPERLY! JUST ADD THEM IN YOUR SCRIPT ABOVE MY AUTOTALKER AND IT WILL WORK!


    Da Der Der proudly presents:

    The AutoTalker Function!

    This is very very useful for not getting banned.


    INSTALL IT HERE ------->


    Features:
    ----------------------------------------------
    • Talks to people that say your name!
    • Responds to every level except for attack, strength, defence hits, and hunter!
    • Responds quickly!
    • Responds to random questions!
    ----------------------------------------------

    PLEASE POST ANY WAY THAT I CAN IMPROVE THIS AND PLEASE POST IF YOU LIKE IT OR NOT!

    Thanks for looking!

    - Da Der Der
    If I see you autoing with level 3/default clothes/crap name I WILL report you. Auto Correctly. - put this in your sig

  2. #2
    Join Date
    Oct 2006
    Location
    Finland
    Posts
    433
    Mentioned
    1 Post(s)
    Quoted
    8 Post(s)

    Default

    Looks darn great, I'll be testing and if it works great, will add to my script.

  3. #3
    Join Date
    Nov 2006
    Posts
    189
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks and be sure to tell me if it works please. And one question. I know this is really an odd question but I am still a noob at scripting. I know how to make all these functions and procedures but how would I add that to my script? Do I just leave it as it is since it is a function or do I have to add it in my main loop or something?
    If I see you autoing with level 3/default clothes/crap name I WILL report you. Auto Correctly. - put this in your sig

  4. #4
    Join Date
    Oct 2006
    Location
    Finland
    Posts
    433
    Mentioned
    1 Post(s)
    Quoted
    8 Post(s)

    Default

    Quote Originally Posted by Da Der Der View Post
    Thanks and be sure to tell me if it works please. And one question. I know this is really an odd question but I am still a noob at scripting. I know how to make all these functions and procedures but how would I add that to my script? Do I just leave it as it is since it is a function or do I have to add it in my main loop or something?
    You call them up in youre loop etc.

    like
    AutoTalk; etc.

  5. #5
    Join Date
    Nov 2006
    Posts
    189
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Gimme an example please?
    If I see you autoing with level 3/default clothes/crap name I WILL report you. Auto Correctly. - put this in your sig

  6. #6
    Join Date
    Oct 2006
    Location
    Finland
    Posts
    433
    Mentioned
    1 Post(s)
    Quoted
    8 Post(s)

    Default

    Quote Originally Posted by Da Der Der View Post
    Gimme an example please?

    Well Kattackmonster is a procedure in SRL fighting
    Code:
    function KAttackMonster(Color1, Color2, Color3, Tolerance: Integer; MonsterName: String): Boolean;
    var
      i, x, y: Integer;
    begin
      Flag;
      for i:= 1 to 5 do
     begin
       if(FindColorTolerance(x, y, Color1, MSX1, MSY1, MSX2, MSY2, Tolerance + i))and
         (FindColorTolerance(x, y, Color2, MSX1, MSY1, MSX2, MSY2, Tolerance + i))and
         (FindColorTolerance(x, y, Color3, MSX1, MSY1, MSX2, MSY2, Tolerance + i))then
        begin
          MMouse(x, y, 3, 3);
          wait(80 + random(60));
          if(IsUpText('Attack '+MonsterName))then
         begin
           result:= true;
           GetMousePos(x, y);
           Mouse(x, y, 0, 0, true);
           wait(40 + random(20));
           Flag;
           OutFight; //Waits Until Out Of Fight..
           exit;
         end;
        end;
     end;
    end;


    And Now Lets play that Im calling it up on my main loop
    Code:
    Procedure MainLoop;
    Begin
    a=0;
    Repeat;
    Kattackmonster(Color1,Color2,Color3,Tolerance,Monstername) ;
    EatFood;
    FindNormalRandoms;
    a=a+1;
    Until(a=1000) ;
    End;

  7. #7
    Join Date
    Nov 2006
    Posts
    189
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Lol, no I mean could you give me an example using my function lol?
    If I see you autoing with level 3/default clothes/crap name I WILL report you. Auto Correctly. - put this in your sig

  8. #8
    Join Date
    Nov 2006
    Posts
    91
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Excellent work dude! cant even make a 10 line script and your makeing functions

  9. #9
    Join Date
    Nov 2006
    Posts
    189
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks for the first sentence at least. And haha I'm not that bad. I got a pretty good Fire Crafter going but I'm holding off on that for a little bit and continuing on my Al Kharid Smelter. Hopefully will be a pay script. But ya, anyways, thanks for the comment =]
    If I see you autoing with level 3/default clothes/crap name I WILL report you. Auto Correctly. - put this in your sig

  10. #10
    Join Date
    Nov 2006
    Posts
    189
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Could you give me an example of how I could call my AutoTalker up into my loop?
    If I see you autoing with level 3/default clothes/crap name I WILL report you. Auto Correctly. - put this in your sig

  11. #11
    Join Date
    Nov 2006
    Posts
    189
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Or whatever DaWu meant above?
    If I see you autoing with level 3/default clothes/crap name I WILL report you. Auto Correctly. - put this in your sig

  12. #12
    Join Date
    Sep 2006
    Posts
    916
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Nice, a few things:

    You triple posted
    I get:
    Line 17: [Error] (17:50): Unknown identifier 'SmallChars' in script
    Wierd?

    Good job other then that!

  13. #13
    Join Date
    Nov 2006
    Posts
    189
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    SmallChars is not even on line 17 in my function, so it has to be the script you're putting it into, or it is the include you are using. Oh, and sorry about the tripple post.
    If I see you autoing with level 3/default clothes/crap name I WILL report you. Auto Correctly. - put this in your sig

  14. #14
    Join Date
    Sep 2006
    Posts
    916
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I added a few varibables, so it bumped it 2 lines forward. The OldLine and some other Line didnt work, had to declare them as variables. But yes good job.

  15. #15
    Join Date
    Nov 2006
    Posts
    189
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    So I have to declare OldLine and NewLine a variable? Or is it OldLine and TheLine?
    If I see you autoing with level 3/default clothes/crap name I WILL report you. Auto Correctly. - put this in your sig

  16. #16
    Join Date
    May 2006
    Posts
    141
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    nice work

  17. #17
    Join Date
    Nov 2006
    Posts
    189
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thank you very much Rencuz Jr. I just need to know how to call it up in my loop. Could you help me? Maybe add me on MSN or AIM?
    If I see you autoing with level 3/default clothes/crap name I WILL report you. Auto Correctly. - put this in your sig

  18. #18
    Join Date
    Nov 2006
    Posts
    189
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    90 Some views and only like 5 comments?
    If I see you autoing with level 3/default clothes/crap name I WILL report you. Auto Correctly. - put this in your sig

  19. #19
    Join Date
    Oct 2006
    Posts
    412
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Wow, i cant believe how many times he has asked someone to show him how to use his function in a script...

    Code:
    Program new
    {.include srl and if you have yoru function in a seperate file]
    
    //main loop
    begin
    Your normal stuff
    //usually in a repeat loop
    doing stuff;
    while (doing your stuff, smithing or whatever, and waiting around)
    AutoTalk;//where its looking for anyone talking to you
    untill ( the stuff you are doing is done, or you want to do something else);
    do more stuff;
    end.
    It is very similar to calling 'FindNormalRandoms' where when you call it it looks for randoms and if it finds one, acts accordingly. When your call your AutoTalk, it checks if some1 is talking to you, and acts how it is supposed to.

    Note: I havent actually looked at your script as of writing this, but i felt you deserved an answer.

  20. #20
    Join Date
    Nov 2006
    Posts
    189
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks, I understand better now. =]
    If I see you autoing with level 3/default clothes/crap name I WILL report you. Auto Correctly. - put this in your sig

  21. #21
    Join Date
    Nov 2006
    Posts
    189
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    No one wants to comment?
    If I see you autoing with level 3/default clothes/crap name I WILL report you. Auto Correctly. - put this in your sig

  22. #22
    Join Date
    Nov 2006
    Posts
    189
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    So no one likes this? come one!
    If I see you autoing with level 3/default clothes/crap name I WILL report you. Auto Correctly. - put this in your sig

  23. #23
    Join Date
    Feb 2006
    Location
    Amsterdam
    Posts
    6,136
    Mentioned
    28 Post(s)
    Quoted
    17 Post(s)

    Default

    Hmm.
    This looks exactly like our private Autoresponder....Where did you copy this idea from? just curious....
    SRL is a Library of routines made by the SRL community written for the Program Simba.
    We produce Scripts for the game Runescape.

  24. #24
    Join Date
    Nov 2006
    Posts
    189
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I didn't copy it, I saw that Charmz had it in his and I edited it. I haven't put up the new version yet, this was just a beta type thing. All your names are in this next version.
    If I see you autoing with level 3/default clothes/crap name I WILL report you. Auto Correctly. - put this in your sig

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Tazzin44 presents Powellow!
    By tazzin44 in forum RS3 Outdated / Broken Scripts
    Replies: 35
    Last Post: 04-27-2009, 03:20 AM
  2. [SRL 4] Markuska815 presents the S.V.C.
    By markuska815 in forum RS3 Outdated / Broken Scripts
    Replies: 36
    Last Post: 11-07-2008, 05:53 AM
  3. DaWu proudly presents: DaWuAutoFighter - - Tested for hours.
    By DaWu in forum RS3 Outdated / Broken Scripts
    Replies: 323
    Last Post: 01-30-2008, 08:25 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
  •