[Question] Teaching Scrolls
[Question] Teaching Scrolls
¿Is there any way to get more than 2 teaching scrolls (certificados de enseñanza < In spanish) from the npc at Class Hall in Varanas?
Re: [Question] Teaching Scrolls
Doesn't it give a certain number per day?
- Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
- I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
- How to: copy and paste in micromacro
________________________
Quote:- “They say hard work never hurt anybody, but I figure, why take the chance.”
- Ronald Reagan
Re: [Question] Teaching Scrolls
It does, yes. But since the menu to buy them has 2 questions (one for buy, and 1 to confirm) and only the first one is blocked when you buy 2, i was wondering if we can access to the "confirm" one, to buy scrolls directly.
(PS: Just like the addon for the chocolate milk from a few events earlier.)
(PS: Just like the addon for the chocolate milk from a few events earlier.)
Re: [Question] Teaching Scrolls
How did the chocolate milk one do it?
- Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
- I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
- How to: copy and paste in micromacro
________________________
Quote:- “They say hard work never hurt anybody, but I figure, why take the chance.”
- Ronald Reagan
-
BillDoorNZ
- Posts: 446
- Joined: Wed Aug 03, 2011 7:37 pm
Re: [Question] Teaching Scrolls
It probably utilized the bug where you can talk to an NPC, choose an option (which results in the dialog closing) and then execute: sendMacro("SpeakFrame_ListDialogOption(1, 1)") to choose option 1 again without having to open the dialog again.
I use this in a script for chatting to housekeepers:
as you can see, it only targets them once (opening the dialog the first and only time) then just selects the chat option (1,1) repetitively.
I use this in a script for chatting to housekeepers:
Code: Select all
player:target_NPC(113798); for i=0,6,1 do sendMacro("SpeakFrame_ListDialogOption(1, 1)");yrest(10); end;
player:target_NPC(113797); for i=0,6,1 do sendMacro("SpeakFrame_ListDialogOption(1, 1)");yrest(10); end;
player:target_NPC(113775); for i=0,6,1 do sendMacro("SpeakFrame_ListDialogOption(1, 1)");yrest(10); end;
player:target_NPC( 113772 ); for i=0,6,1 do sendMacro("SpeakFrame_ListDialogOption(1, 1)");yrest(10); end;
Re: [Question] Teaching Scrolls
Well that command doesn't seem to work at all. Not on that npc anyway. And the trick doesn't seem to work with "ChoiceOption" either.
- Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
- I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
- How to: copy and paste in micromacro
________________________
Quote:- “They say hard work never hurt anybody, but I figure, why take the chance.”
- Ronald Reagan
-
BillDoorNZ
- Posts: 446
- Joined: Wed Aug 03, 2011 7:37 pm
Re: [Question] Teaching Scrolls
yeah, I think it only works on the initial dialog that is opened. So in this case, because the first one asks if they want to buy, and the second one does the confirm option, then doing this wont help.