Page 2 of 3 FirstFirst 123 LastLast
Results 26 to 50 of 60

Thread: Anyone willing to help me create an Autoresponder?

  1. #26
    Join Date
    May 2008
    Posts
    1,345
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Hmm? What do you mean? I tried my hand at it, but decided it wasn't worth the time it takes people to capitalize their names in the declare players :/.

  2. #27
    Join Date
    Nov 2008
    Location
    Canada
    Posts
    159
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    Huh? I just meant showing new people how to put in their own stuff.
    I run in triangles because circles are for squares.

  3. #28
    Join Date
    May 2008
    Posts
    1,345
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Oh! That'll be easy. I'm going to wait until I get a decent amount of replies though.

  4. #29
    Join Date
    Nov 2008
    Location
    Canada
    Posts
    159
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    Oh, okay. You should add a 1337 Sp33k onto your script. I'm sure that it'll bring it into RS.
    I run in triangles because circles are for squares.

  5. #30
    Join Date
    May 2008
    Posts
    1,345
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Yea, I'm going to, possibly add a boolean for whether to leetspeak or not, then 1337'erize the replies :P.

  6. #31
    Join Date
    Oct 2008
    Location
    C:\Simba\Includes\
    Posts
    7,566
    Mentioned
    19 Post(s)
    Quoted
    180 Post(s)

    Default

    Quote Originally Posted by Sand Storm View Post
    Thanks for the suggestions, added some of them in (I don't like leetspeak, if you'd like I can do it though, if people think it's worth adding).
    That's fine, I just know that alot of kids on there type like that so that's why I put it up lol.

    ~Camo
    Away for awhile, life is keeping me busy. | Want to get my attention in a thread? @Kyle Undefined; me.
    { MSI Phoenix || SRL Stats Sigs || Paste || Scripts || Quotes || Graphics }

    When posting a bug, please post debug! Help us, help you!

    I would love to change the world, but they won't give me the source code. || To be the best, you've got to beat the rest. || Logic never changes, just the syntax.
    If you PM me with a stupid question or one listed in FAQ, or about a script that is not mine, I will NOT respond.


    SRL is a Library of routines made by the SRL community written for the Program Simba. We produce Scripts for the game Runescape.


  7. #32
    Join Date
    Jul 2008
    Posts
    907
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i wouldn't do l33t speak it's just not normal, i never find myself typing like that and i never see anybody else either, tbh theres not much point.


  8. #33
    Join Date
    May 2008
    Posts
    1,345
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I'm also using the addmistakes SRL function, so it'll vary itself.

    Not sure if it's changed since I last posted:

    SCAR Code:
    {
    I'd like to thank many people!

    Viral, for pointing me towards, and posting, Nava's InChatArr function.
    Wt-Fakawi, for creating the InChatArr function (I believe).
    Nava, for posting the InChatArr function where Viral got it, regardless of the original creator.
    Camo Kyle, for sitting with me in Lumbridge tower while we tried to figure out why it wasn't working (PSST! InChatMulti was broken!)
    Botsrs, for sitting with me in Lumbridge tower and helping me try the fixed version.}


    {.include srl/srl/misc/QuickChat.scar}

    const
      StartPersonality = 'polite';
      TimeBetweenResponds = 10000;

    var
      Respond1, I : array of string;
      Personality : string;
      N, C, TimeMarkerNow : Integer;

    function InChatArr(Text: array of string): Boolean;
    var
      I, H: integer;
      s: string;
    begin
      H := High(Text);
      if (not (GetLastChatText(s))) then
        LastChatter(s);
      for I := 0 to H do
      begin
        if (Pos(Lowercase(Text[i]), (Lowercase(s))) > 0) then
        begin
          Result := true;
          Exit;
        end;
      end;
    end;


    Procedure SetupAutorespond;
    Begin
    Personality := StartPersonality;
    TimeMarkerNow := TimeBetweenResponds + 1;
    End;

    procedure Responding;
    begin
    If Not LoggedIn Then
    Exit;
    If Not TimeFromMark(TimeMarkerNow) > TimeBetweenResponds Then
    Begin
    WriteLn('Time from the last mark is NOT higher then the set time to wait between responses!');
    Exit;
    End;
    if not FindBlackChatMessage(Players[currentplayer].name) and InChatArr(['oodcutting', 'oodcut', 'ishing', 'ish', 'ine', 'ining', 'hi', 'hello', 'sup', 'yo', 'lol', 'lmao', 'rofl', 'haha']) then
      begin
        WriteLn('Here we go!');
        I := ['oodcutting', 'oodcut', 'ishing', 'ish', 'ining', 'hi ', 'hello ', 'sup ', 'yo ', 'lol', 'lmao ', 'rofl ', 'haha ', 'rafting', 'raft', ''];
        for N := 0 to GetArrayLength(I)-1 do
          case InChat(I[N]) of
            True:
            begin
              C := N;
                case C of
                  0..1 :
                    begin
                      case lowercase(Personality) of
                        'laid back': Respond1 := ['Tis ', 'Yo, my wc lvl is ', 'My level be ', 'It be ', ''];
                        'polite': Respond1 := ['Thanks for asking, it is ', 'It is ', ''];
                        'bored': Respond1 := ['Lolz, it''s ', 'dood! My wc level is ', '', 'Aren''t you smart? It''s obviously 99, duh!', 'Lolcat sayz it be ', 'Lolwut! My level be '];
                        'angry': Respond1 := ['What''s it matter? If you must know it''s ', 'Bah. ', ''];
                      end;
                      case Random(4) of
                        0..2 : TypeSend(AddMistakes(Respond1[Random(GetArrayLength(Respond1))] + IntToStr(GetSkillInfo('woodcutting', True)), 20));
                      end;
                      TimeMarkerNow:=0;
                      Marktime(TimeMarkerNow);
                    end;
                  2..3 :
                    begin
                      case lowercase(Personality) of
                        'laid back': Respond1 := ['Tis ', 'Yo, my fishing lvl is ', 'It''s ', '', 'My level be ', 'It be '];
                        'polite': Respond1 := ['Thanks for asking, it is ', 'It is ', ''];
                        'bored': Respond1 := ['Lolz, it''s ', 'dood! My fishing level is ', '', 'Aren''t you smart? It''s obviously 99, duh!', 'Lolcat sayz it be ', 'Lolwut! My level be '];
                        'angry': Respond1 := ['What''s it matter? If you must know it''s ', 'Bah. ', ''];
                      end;
                      case Random(4) of
                        0..2 : TypeSend(AddMistakes(Respond1[Random(GetArrayLength(Respond1))] + IntToStr(GetSkillInfo('fishing', True)), 20));
                      end;
                      TimeMarkerNow:=0;
                      Marktime(TimeMarkerNow);
                    end;
                  4..5 :
                    begin
                      case lowercase(Personality) of
                        'laid back': Respond1 := ['Tis ', 'Yo, my craft lvl is ', '', 'My level be ', 'It be '];
                        'polite': Respond1 := ['Thanks for asking, my crafting level is ', 'It is ', ''];
                        'bored': Respond1 := ['Lolz, it''s ', 'dood! My crafting level is ', '', 'Aren''t you smart? It''s obviously 99, duh!', 'Lolcat sayz it be ', 'Lolwut! My level be '];
                        'angry': Respond1 := ['Whats it to you? If you must know its ', 'Bah. ', ''];
                      end;
                      case Random(4) of
                        0..2 : TypeSend(AddMistakes(Respond1[Random(GetArrayLength(Respond1))] + IntToStr(GetSkillInfo('crafting', True)), 20));
                      end;
                      TimeMarkerNow:=0;
                      Marktime(TimeMarkerNow);
                    end;
                  6..9 :
                    begin
                      case lowercase(Personality) of
                        'laid back': Respond1 := ['Yo!', 'Sup?', 'Sup man?', 'Sup dawg', 'Yo dawg', 'What''s happenin?', 'Hola'];
                        'polite': Respond1 := ['Hello.', 'Good day to you.', 'It''s nice to see you!', 'G''day mate', 'How are you doing today?'];
                        'bored': Respond1 := ['Ohaider!', 'Hi.', 'Y0z!', 'Lolwut it''s you!', 'Koneecheewah', 'h3110', 'H to the E to the L to the L to the O', 'Well then, H to the I'];
                        'angry': Respond1 := ['What?', 'Wha''dyawant',  'Leave me alone!', 'Go away!', 'Hi noob', 'Was I talking to you?', 'Stupid noob, leave me alone!'];
                      end;
                      case Random(4) of
                        0..2 : TypeSend(AddMistakes(Respond1[Random(GetArrayLength(Respond1))], 20));
                      end;
                      TimeMarkerNow:=0;
                      Marktime(TimeMarkerNow);
                    end;
                  10..13 :
                    begin
                      case lowercase(Personality) of
                        'laid back': Respond1 := ['dood, funneh!', 'hehe', 'l0lz'];
                        'polite': Respond1 := ['That was funny!', 'Please tell another joke, that was very funny!', 'Heh'];
                        'bored': Respond1 := ['roflc0pt3rz', 'lool', 'roflzzz', 'lmao!'];
                        'angry': Respond1 := ['What''s so funny, punk?', 'Stop laughing, that was horrible'];
                      end;
                      case Random(4) of
                       0..2 : TypeSend(AddMistakes(Respond1[Random(GetArrayLength(Respond1))], 20));
                      End;
                      TimeMarkerNow:=0;
                      Marktime(TimeMarkerNow);
                    end;
                  14..15 :
                    begin
                      case lowercase(Personality) of
                        'laid back': Respond1 := ['Tis ', 'Yo, my mining lvl is ', '', 'My level be ', 'It be '];
                        'polite': Respond1 := ['Thanks for asking', 'It is ', ''];
                        'bored': Respond1 := ['Lolz, it''s ', 'dood! My mining level is ', '', 'Aren''t you smart? It''s obviously 99, duh!', 'Lolcat sayz it be ', 'Lolwut! My level be '];
                        'angry': Respond1 := ['Whats it matter? If you must know its ', 'Bah. ', ''];
                      end;
                      case Random(4) of
                        0..2 : TypeSend(AddMistakes(Respond1[Random(GetArrayLength(Respond1))] + IntToStr(GetSkillInfo('mining', True)), 20));
                      end;
                      TimeMarkerNow:=0;
                      Marktime(TimeMarkerNow);
                    end;
                  False: Exit;
                end;
              end;
          end;
      end;
    end;

  9. #34
    Join Date
    Oct 2008
    Location
    C:\Simba\Includes\
    Posts
    7,566
    Mentioned
    19 Post(s)
    Quoted
    180 Post(s)

    Default

    Is the InChatMulti working? Or did you replace it with something else? It keeps getting better and better lol.

    ~Camo
    Away for awhile, life is keeping me busy. | Want to get my attention in a thread? @Kyle Undefined; me.
    { MSI Phoenix || SRL Stats Sigs || Paste || Scripts || Quotes || Graphics }

    When posting a bug, please post debug! Help us, help you!

    I would love to change the world, but they won't give me the source code. || To be the best, you've got to beat the rest. || Logic never changes, just the syntax.
    If you PM me with a stupid question or one listed in FAQ, or about a script that is not mine, I will NOT respond.


    SRL is a Library of routines made by the SRL community written for the Program Simba. We produce Scripts for the game Runescape.


  10. #35
    Join Date
    May 2008
    Posts
    1,345
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I'm using Wt-Fakawi's (or Nava's, not sure), InChatArr for it .

    Woo lol:


  11. #36
    Join Date
    Oct 2008
    Location
    C:\Simba\Includes\
    Posts
    7,566
    Mentioned
    19 Post(s)
    Quoted
    180 Post(s)

    Default

    W00t! That looks smexy! Like mine?


    ~Camo
    Away for awhile, life is keeping me busy. | Want to get my attention in a thread? @Kyle Undefined; me.
    { MSI Phoenix || SRL Stats Sigs || Paste || Scripts || Quotes || Graphics }

    When posting a bug, please post debug! Help us, help you!

    I would love to change the world, but they won't give me the source code. || To be the best, you've got to beat the rest. || Logic never changes, just the syntax.
    If you PM me with a stupid question or one listed in FAQ, or about a script that is not mine, I will NOT respond.


    SRL is a Library of routines made by the SRL community written for the Program Simba. We produce Scripts for the game Runescape.


  12. #37
    Join Date
    Mar 2007
    Posts
    732
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Cool idea man.
    I've always thought SCAR needs one of these :P.

    I was thinking more like auto respond through quick chat,
    whcih would be a lot easier, but w\e
    Sean[714] @rscheata.net

  13. #38
    Join Date
    May 2008
    Posts
    1,345
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Nah, I found it didn't work so well :/. That's why I removed it. Anyways, I'm going to add in all the f2p skills today/tomorrow, when I get a chance. Long. Boring. Lots of typing. Oh joy.

    ~Sandstorm

    P.S. - I still want more replies!

  14. #39
    Join Date
    Aug 2008
    Location
    Planet Earth.
    Posts
    53
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    What happens if people go "--WC---LEVELS?" or "*space*space*WC*space*space*space*space*LEVEL S", i'm not sure if you'd be able to do this put theres a "trim" function for strings, could you use that to help?

    Enchanted.
    Learning: Italian!
    Code:
    <Jason2G's> I just sprayed WD-40 on my dog's nuts. He was sleeping. And now he can't get back to sleep ^_^

  15. #40
    Join Date
    May 2008
    Posts
    1,345
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I don't think it matters. It searches for the string level, lvl, levl, etc., and if it finds it, it goes onto looking for the rest, wc for example. So even if it's wc LVLs? It'd still find the lvl part of the string, allowing it to continue, then the wc part of the string. I think. Lol.

  16. #41
    Join Date
    Jul 2008
    Posts
    907
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    for caps you'd have to use if InChat(LowerCase('lvls')); not just InChat('lvls');


  17. #42
    Join Date
    May 2008
    Posts
    1,345
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I'll keep that in mind, thanks .

  18. #43
    Join Date
    Jan 2007
    Posts
    85
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    So I looked over some of your proposed responses and frankly they are a tad strange. No one uses the phrase "Good sir" anymore. However, I will help you develop a shitload of wonderful phrases to chat with if you'd like. The key is slight differences but not to the point where its ridiculous.

  19. #44
    Join Date
    May 2008
    Posts
    1,345
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Lol. I was just coming up with stuff for examples, and filler xD.

  20. #45
    Join Date
    Oct 2008
    Location
    C:\Simba\Includes\
    Posts
    7,566
    Mentioned
    19 Post(s)
    Quoted
    180 Post(s)

    Default

    Is it updated? Lol...happy Sand?

    ~Camo
    Away for awhile, life is keeping me busy. | Want to get my attention in a thread? @Kyle Undefined; me.
    { MSI Phoenix || SRL Stats Sigs || Paste || Scripts || Quotes || Graphics }

    When posting a bug, please post debug! Help us, help you!

    I would love to change the world, but they won't give me the source code. || To be the best, you've got to beat the rest. || Logic never changes, just the syntax.
    If you PM me with a stupid question or one listed in FAQ, or about a script that is not mine, I will NOT respond.


    SRL is a Library of routines made by the SRL community written for the Program Simba. We produce Scripts for the game Runescape.


  21. #46
    Join Date
    May 2008
    Posts
    1,345
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    No it isn't updated .

    Here's the updated one, it's got the capability to be un-capitalized in declare players, unlike my other versions. <3 delete function .

    SCAR Code:
    {
    I'd like to thank many people!

    Viral, for pointing me towards, and posting, Nava's InChatArr function.
    Wt-Fakawi, for creating the InChatArr function (I believe).
    Nava, for posting the InChatArr function where Viral got it, regardless of the original creator.
    Camo Kyle, for sitting with me in Lumbridge tower while we tried to figure out why it wasn't working (PSST! InChatMulti was broken!)
    Botsrs, for sitting with me in Lumbridge tower and helping me try the fixed version.}


    {.include srl/srl/misc/QuickChat.scar}

    const
      StartPersonality = 'polite';
      TimeBetweenResponds = 10000;

    var
      Respond1, I : array of string;
      Personality : string;
      N, C, TimeMarkerNow : Integer;

    function InChatArr(Text: array of string): Boolean;
    var
      I, H: integer;
      s: string;
    begin
      H := High(Text);
      if (not (GetLastChatText(s))) then
        LastChatter(s);
      for I := 0 to H do
      begin
        if (Pos(Lowercase(Text[i]), (Lowercase(s))) > 0) then
        begin
          Result := true;
          Exit;
        end;
      end;
    end;


    Procedure SetupAutorespond;
    Begin
    Personality := StartPersonality;
    TimeMarkerNow := TimeBetweenResponds + 1;
    End;

    procedure Responding;
    Var
     EditedName : String;
    begin
      If Not LoggedIn Then
        Exit;
      If Not TimeFromMark(TimeMarkerNow) > TimeBetweenResponds Then
      Begin
        WriteLn('Time from the last mark is NOT higher then the set time to wait between responses!');
        Exit;
      End;
      EditedName := Players[currentplayer].name;
      Delete(EditedName, 1, 1);
    if not FindBlackChatMessage(EditedName) and InChatArr(['oodcutting', 'oodcut', 'ishing', 'ish', 'ine', 'ining', 'hi', 'hello', 'sup', 'yo', 'lol', 'lmao', 'rofl', 'haha']) then
      begin
        WriteLn('Here we go!');
        I := ['oodcutting', 'oodcut', 'ishing', 'ish', 'ining', 'hi ', 'hello ', 'sup ', 'yo ', 'lol', 'lmao ', 'rofl ', 'haha ', 'rafting', 'raft', ''];
        for N := 0 to GetArrayLength(I)-1 do
          case InChat(lowercase(I[N])) of
            True:
            begin
              C := N;
                case C of
                  0..1 :
                    begin
                      case lowercase(Personality) of
                        'laid back': Respond1 := ['Tis ', 'Yo, my wc lvl is ', 'My level be ', 'It be ', ''];
                        'polite': Respond1 := ['Thanks for asking, it is ', 'It is ', ''];
                        'bored': Respond1 := ['Lolz, it''s ', 'Dood! My wc level is ', '', 'Aren''t you smart? It''s obviously 99, duh!', 'Lolcat sayz it be ', 'Lolwut! My level be '];
                        'angry': Respond1 := ['What''s it matter? If you must know it''s ', 'Bah. ', ''];
                      end;
                      case Random(4) of
                        0..2 : TypeSend(AddMistakes(Respond1[Random(GetArrayLength(Respond1))] + IntToStr(GetSkillInfo('woodcutting', True)), 20));
                      end;
                      TimeMarkerNow:=0;
                      Marktime(TimeMarkerNow);
                    end;
                  2..3 :
                    begin
                      case lowercase(Personality) of
                        'laid back': Respond1 := ['Tis ', 'Yo, my fishing lvl is ', 'It''s ', '', 'My level be ', 'It be '];
                        'polite': Respond1 := ['Thanks for asking, it is ', 'It is ', ''];
                        'bored': Respond1 := ['Lolz, it''s ', 'dood! My fishing level is ', '', 'Aren''t you smart? It''s obviously 99, duh!', 'Lolcat sayz it be ', 'Lolwut! My level be '];
                        'angry': Respond1 := ['What''s it matter? If you must know it''s ', 'Bah. ', ''];
                      end;
                      case Random(4) of
                        0..2 : TypeSend(AddMistakes(Respond1[Random(GetArrayLength(Respond1))] + IntToStr(GetSkillInfo('fishing', True)), 20));
                      end;
                      TimeMarkerNow:=0;
                      Marktime(TimeMarkerNow);
                    end;
                  4..5 :
                    begin
                      case lowercase(Personality) of
                        'laid back': Respond1 := ['Tis ', 'Yo, my craft lvl is ', '', 'My level be ', 'It be '];
                        'polite': Respond1 := ['Thanks for asking, my crafting level is ', 'It is ', ''];
                        'bored': Respond1 := ['Lolz, it''s ', 'dood! My crafting level is ', '', 'Aren''t you smart? It''s obviously 99, duh!', 'Lolcat sayz it be ', 'Lolwut! My level be '];
                        'angry': Respond1 := ['Whats it to you? If you must know its ', 'Bah. ', ''];
                      end;
                      case Random(4) of
                        0..2 : TypeSend(AddMistakes(Respond1[Random(GetArrayLength(Respond1))] + IntToStr(GetSkillInfo('crafting', True)), 20));
                      end;
                      TimeMarkerNow:=0;
                      Marktime(TimeMarkerNow);
                    end;
                  6..9 :
                    begin
                      case lowercase(Personality) of
                        'laid back': Respond1 := ['Yo!', 'Sup?', 'Sup man?', 'Sup dawg', 'Yo dawg', 'What''s happenin?', 'Hola'];
                        'polite': Respond1 := ['Hello.', 'Good day to you.', 'It''s nice to see you!', 'G''day mate', 'How are you doing today?'];
                        'bored': Respond1 := ['Ohaider!', 'Hi.', 'Y0z!', 'Lolwut it''s you!', 'Koneecheewah', 'h3110', 'H to the E to the L to the L to the O', 'Well then, H to the I'];
                        'angry': Respond1 := ['What?', 'Wha''dyawant',  'Leave me alone!', 'Go away!', 'Hi noob', 'Was I talking to you?', 'Stupid noob, leave me alone!'];
                      end;
                      case Random(4) of
                        0..2 : TypeSend(AddMistakes(Respond1[Random(GetArrayLength(Respond1))], 20));
                      end;
                      TimeMarkerNow:=0;
                      Marktime(TimeMarkerNow);
                    end;
                  10..13 :
                    begin
                      case lowercase(Personality) of
                        'laid back': Respond1 := ['dood, funneh!', 'hehe', 'l0lz'];
                        'polite': Respond1 := ['That was funny!', 'Please tell another joke, that was very funny!', 'Heh'];
                        'bored': Respond1 := ['roflc0pt3rz', 'lool', 'roflzzz', 'lmao!'];
                        'angry': Respond1 := ['What''s so funny, punk?', 'Stop laughing, that was horrible'];
                      end;
                      case Random(4) of
                       0..2 : TypeSend(AddMistakes(Respond1[Random(GetArrayLength(Respond1))], 20));
                      End;
                      TimeMarkerNow:=0;
                      Marktime(TimeMarkerNow);
                    end;
                  14..15 :
                    begin
                      case lowercase(Personality) of
                        'laid back': Respond1 := ['Tis ', 'Yo, my mining lvl is ', '', 'My level be ', 'It be '];
                        'polite': Respond1 := ['Thanks for asking', 'It is ', ''];
                        'bored': Respond1 := ['Lolz, it''s ', 'dood! My mining level is ', '', 'Aren''t you smart? It''s obviously 99, duh!', 'Lolcat sayz it be ', 'Lolwut! My level be '];
                        'angry': Respond1 := ['Whats it matter? If you must know its ', 'Bah. ', ''];
                      end;
                      case Random(4) of
                        0..2 : TypeSend(AddMistakes(Respond1[Random(GetArrayLength(Respond1))] + IntToStr(GetSkillInfo('mining', True)), 20));
                      end;
                      TimeMarkerNow:=0;
                      Marktime(TimeMarkerNow);
                    end;
                  False: Exit;
                end;
              end;
          end;
      end;
    end;

  22. #47
    Join Date
    Mar 2006
    Posts
    795
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    make the personality automatically change . like depending on the question..
    e.g. Ur on an angry personality and someone asks u "whats ur woodcut level =)" then u reply in a calmer tone ..



    Dont Steal..

  23. #48
    Join Date
    May 2008
    Posts
    1,345
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Yea, I haven't implemented that yet either. Gonna do that sometime today, if I get time off from my duel script thing.

    Still looking for replies!

    ~Sandstorm

  24. #49
    Join Date
    Oct 2008
    Location
    C:\Simba\Includes\
    Posts
    7,566
    Mentioned
    19 Post(s)
    Quoted
    180 Post(s)

    Default

    Quote Originally Posted by Sand Storm View Post
    Yea, I haven't implemented that yet either. Gonna do that sometime today, if I get time off from my duel script thing.

    Still looking for replies!

    ~Sandstorm
    Your duel script sucks! You type too fast! Lol

    ~Camo
    Away for awhile, life is keeping me busy. | Want to get my attention in a thread? @Kyle Undefined; me.
    { MSI Phoenix || SRL Stats Sigs || Paste || Scripts || Quotes || Graphics }

    When posting a bug, please post debug! Help us, help you!

    I would love to change the world, but they won't give me the source code. || To be the best, you've got to beat the rest. || Logic never changes, just the syntax.
    If you PM me with a stupid question or one listed in FAQ, or about a script that is not mine, I will NOT respond.


    SRL is a Library of routines made by the SRL community written for the Program Simba. We produce Scripts for the game Runescape.


  25. #50
    Join Date
    May 2008
    Posts
    1,345
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Lol. This isn't the thread for that. And it's only because the only wait I have is a check to see if someone challenged me rofl.

Page 2 of 3 FirstFirst 123 LastLast

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. AutoResponder...
    By yanix in forum RS3 Outdated / Broken Scripts
    Replies: 8
    Last Post: 09-15-2007, 08:12 AM
  2. Autoresponder
    By TViYH in forum RS3 Outdated / Broken Scripts
    Replies: 1
    Last Post: 05-22-2007, 11:25 PM
  3. AutoResponder...
    By Jason2gs in forum OSR Help
    Replies: 18
    Last Post: 03-02-2007, 03:28 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
  •