Page 1 of 1

[Question] Teaching Scrolls

Posted: Sun Nov 06, 2011 10:15 pm
by rubenr
¿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

Posted: Sun Nov 06, 2011 10:43 pm
by rock5
Doesn't it give a certain number per day?

Re: [Question] Teaching Scrolls

Posted: Tue Nov 08, 2011 3:55 pm
by rubenr
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.)

Re: [Question] Teaching Scrolls

Posted: Tue Nov 08, 2011 9:19 pm
by rock5
How did the chocolate milk one do it?

Re: [Question] Teaching Scrolls

Posted: Wed Nov 09, 2011 2:44 pm
by BillDoorNZ
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:

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;
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.

Re: [Question] Teaching Scrolls

Posted: Wed Nov 09, 2011 11:39 pm
by rock5
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.

Re: [Question] Teaching Scrolls

Posted: Thu Nov 10, 2011 3:58 pm
by BillDoorNZ
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.