Results 1 to 12 of 12

Thread: clicknpcchattext = not working...

  1. #1
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    5,553
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default clicknpcchattext = not working...

    clicknpcchattext = not working... why its not working?...

    or do some1 else got an idea to click an npc text?

    SCAR Code:
    unction ClickTextX(b: Integer; txt: string; Left:Boolean): Boolean;
    var
    a : integer;
      begin
       repeat
        ClickNpcChatText(txt,true);
        waitplus(100 + random(100));
        a := a + 1;
        talked := talked + 1

       until(b = a);
     writeln('talked' + intToStr(talked) +' time(s)');
     end;

    the click procedure
    SCAR Code:
    function FindAndTalkToAereck:boolean;
    var
    X:integer;
    begin
      repeat
      X := X + 1
      if (FindObj(Hx, Hy, 'ereck', 6984382, 10)) then
      begin
        Mouse(hx, hy, 1, 1, false);
        ChooseOption('alk-to');
        markTime(H);
        waitplus(1);
      end;
        until(InTalk) or (X > 10);
        if (InTalk) then
        begin
          writeln('in talk with talk father Aereck');
          ClickTextX (1,'to',true);
          ClickTextX (1,'quest',true);
          ClickTextX (2,'to',true);
          ClickTextX (1,'help',true);
          ClickTextX (9,'to',true);
        end;
      end;
    ~Hermen

  2. #2
    Join Date
    Sep 2006
    Posts
    5,219
    Mentioned
    4 Post(s)
    Quoted
    1 Post(s)

    Default

    You prolly need 'here to' instead of 'to', and ClickNpcChatText(txt,Left);

  3. #3
    Join Date
    Feb 2007
    Location
    SparklesProd.com
    Posts
    2,406
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    ClickNpcChat has never worked for me. Even if i pick the smallest un-capitalised phrases.

  4. #4
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    5,553
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    what you mean?
    ~Hermen

  5. #5
    Join Date
    Feb 2007
    Location
    SparklesProd.com
    Posts
    2,406
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    It'st just, never worked for me. It doesn't find or click the npc chat text...

  6. #6
    Join Date
    Feb 2006
    Location
    Amsterdam
    Posts
    13,692
    Mentioned
    146 Post(s)
    Quoted
    130 Post(s)

    Default

    Quote Originally Posted by Sp0rk-eh View Post
    It'st just, never worked for me. It doesn't find or click the npc chat text...
    It work so darn perfectly..



    The best way to contact me is by email, which you can find on my website: http://wizzup.org
    I also get email notifications of private messages, though.

    Simba (on Twitter | Group on Villavu | Website | Stable/Unstable releases
    Documentation | Source | Simba Bug Tracker on Github and Villavu )


    My (Blog | Website)

  7. #7
    Join Date
    Oct 2006
    Posts
    2,297
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Wizzup? View Post
    It work so darn perfectly..
    indead, it always worked for me, i used that for my memebr appliacation if you don't believe me
    Btw hermpie, what's that thing in your sig, the link is invalid -_-
    [QUOTE=Santa_Clause;277761]I love you too TSN :p[/QUOTE]
    [CENTER][URL="http://www.stats.srl-forums.com/sigs"][IMG]http://www.stats.srl-forums.com/sigs/1324.png[/IMG][/URL][/CENTER]

  8. #8
    Join Date
    Feb 2007
    Location
    SparklesProd.com
    Posts
    2,406
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Haha, I wish it did. If's thats the case I'm obviously retarded. But try and use it to click any of the npc text at the ranging minigame in the range guild. After the first clicktocontinue.

  9. #9
    Join Date
    Oct 2006
    Posts
    2,297
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Sp0rk-eh View Post
    Haha, I wish it did. If's thats the case I'm obviously retarded. But try and use it to click any of the npc text at the ranging minigame in the range guild. After the first clicktocontinue.
    you know, i also have something that doesn't work for me, TypeSend!!!
    so i have to turn on CAPS- lock all the time...
    it's something with the TypeByte, so by this i ask the SRL Dev Group if i may change the TypeSend procedure for my own use??
    [QUOTE=Santa_Clause;277761]I love you too TSN :p[/QUOTE]
    [CENTER][URL="http://www.stats.srl-forums.com/sigs"][IMG]http://www.stats.srl-forums.com/sigs/1324.png[/IMG][/URL][/CENTER]

  10. #10
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    5,553
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Boreas View Post
    You prolly need 'here to' instead of 'to', and ClickNpcChatText(txt,Left);

    what you mean with that to must be here to?
    ~Hermen

  11. #11
    Join Date
    Oct 2006
    Posts
    2,297
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by hermpie View Post
    what you mean with that to must be here to?
    you use to short strings to search and click for, if i use
    ClickNpcChatText('climb', true);
    for climbing don the staircase in Lumbridge Castle, it could go wrong...
    since you have 'Climb down' and 'Climb up', so i'll have to use
    ClickNpcChatText('climb down', true);
    You see?
    a string that contains 2 chars is way to short
    [QUOTE=Santa_Clause;277761]I love you too TSN :p[/QUOTE]
    [CENTER][URL="http://www.stats.srl-forums.com/sigs"][IMG]http://www.stats.srl-forums.com/sigs/1324.png[/IMG][/URL][/CENTER]

  12. #12
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    5,553
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i did already know that.. but that tyo thingy was expirement norm it was continue but i tried other words because not wroking..
    ~Hermen

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. ~~~~Working Edge cooker WORKING~~~
    By NiCbaZ in forum RS3 Outdated / Broken Scripts
    Replies: 5
    Last Post: 10-29-2007, 11:16 PM
  2. [Working on].:Autoseller:.[/Working on]
    By dritar in forum First Scripts
    Replies: 10
    Last Post: 10-07-2007, 06:13 AM
  3. ClickNpcChatText
    By Sp0rky in forum OSR Help
    Replies: 11
    Last Post: 07-30-2007, 02:13 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
  •