Results 1 to 7 of 7

Thread: How to talk to NPC?

  1. #1
    Join Date
    Feb 2012
    Posts
    224
    Mentioned
    1 Post(s)
    Quoted
    8 Post(s)

    Default How to talk to NPC?

    hi what i want to do i somthing like

    click continue( like four time)
    choose an option from the npc(like 'hello')
    then click continue again

    how can i do that??

    thanks

  2. #2
    Join Date
    Nov 2011
    Location
    MA
    Posts
    545
    Mentioned
    3 Post(s)
    Quoted
    10 Post(s)

    Default

    Simba Code:
    repeat
      inc(Cont);
      ClickContinue(false, true);
    until (FindNPCChatText('hello', clickleft) or (Cont = 3));
    ClickContinue(false, true);

  3. #3
    Join Date
    Feb 2012
    Posts
    224
    Mentioned
    1 Post(s)
    Quoted
    8 Post(s)

    Default

    kk, ill try this. thanks

  4. #4
    Join Date
    Feb 2012
    Posts
    224
    Mentioned
    1 Post(s)
    Quoted
    8 Post(s)

    Default

    it works for clicking continue but it doen't click the option

  5. #5
    Join Date
    Feb 2012
    Posts
    224
    Mentioned
    1 Post(s)
    Quoted
    8 Post(s)

    Default

    nvm, it click the option but doesn't click continue again after choosing the option

  6. #6
    Join Date
    Nov 2011
    Location
    MA
    Posts
    545
    Mentioned
    3 Post(s)
    Quoted
    10 Post(s)

    Default

    Triple post X( add a begin

  7. #7
    Join Date
    Feb 2011
    Location
    The Future.
    Posts
    5,600
    Mentioned
    396 Post(s)
    Quoted
    1598 Post(s)

    Default

    Simba Code:
    MakeCompass('N');
          Repeat
            repeat
              ClickToContinue;
            until(ClickToContinue = False);
            wait(500);
            FindNPCChatText('es', ClickLeft);
            wait(2000);
            Inc(Tries);
          Until(Whatever other condition or (Tries > 7));

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
  •