Hello,
I was wondering if it is possible to talk to a NPC over and over to buy items (useful when a NPC only gives you small about of item at a time and you want a bulk of it).
I found http://www.openkore.com/index.php/Talknpc this but I am not sure where to use it and how to use it repeatedly till I get certain amount of item I am buying
Now to talk to a certain NPC repeatedly
Moderator: Moderators
-
- Noob
- Posts: 12
- Joined: 16 Apr 2012, 11:44
- Noob?: Yes
-
- Noob
- Posts: 19
- Joined: 29 Sep 2013, 06:25
- Noob?: No
Re: Now to talk to a certain NPC repeatedly
use a macro like this
c r0 r1 r1 = same as hitting "continue", 1 x response 1 and 2 x select response 2 of the npc. change it to what you need. talk to the npc one time manually and when the conversation ends, the automacro should trigger over and over again.
Code: Select all
automacro buythisandthat {
console /conversation ended/
call {
talknpc 123 45 c r0 r1 r1
pause 3
}
timeout 3
}