[Question] Teaching Scrolls

Runes of Magic/Radiant Arcana (http://www.runesofmagic.com)
Post Reply
Message
Author
rubenr
Posts: 49
Joined: Sat Aug 20, 2011 11:26 pm

[Question] Teaching Scrolls

#1 Post 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?
User avatar
rock5
Posts: 12173
Joined: Tue Jan 05, 2010 3:30 am
Location: Australia

Re: [Question] Teaching Scrolls

#2 Post by rock5 »

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
rubenr
Posts: 49
Joined: Sat Aug 20, 2011 11:26 pm

Re: [Question] Teaching Scrolls

#3 Post 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.)
User avatar
rock5
Posts: 12173
Joined: Tue Jan 05, 2010 3:30 am
Location: Australia

Re: [Question] Teaching Scrolls

#4 Post by rock5 »

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

#5 Post 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.
User avatar
rock5
Posts: 12173
Joined: Tue Jan 05, 2010 3:30 am
Location: Australia

Re: [Question] Teaching Scrolls

#6 Post 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.
  • 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

#7 Post 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.
Post Reply