Opening / Targeting the Black Board (in Logar) in Background

Runes of Magic/Radiant Arcana (http://www.runesofmagic.com)
Post Reply
Message
Author
mustang6868
Posts: 2
Joined: Sun Dec 13, 2009 11:33 am

Opening / Targeting the Black Board (in Logar) in Background

#1 Post by mustang6868 »

Hi,

I want to get a specific daily quest from the black board in Logar. I made it using the Addon DailyNotes and the right mouseclick option. But this solution need the window in foreground. Is there any solution available to open the quest list from the black board in background mode?

Thanks for your help!
mustang6868
Posts: 2
Joined: Sun Dec 13, 2009 11:33 am

Re: Opening / Targeting the Black Board (in Logar) in Background

#2 Post by mustang6868 »

Has no one an idea to solve this?

Any help is appreciated ;)
User avatar
Administrator
Site Admin
Posts: 5353
Joined: Sat Jan 05, 2008 4:21 pm

Re: Opening / Targeting the Black Board (in Logar) in Background

#3 Post by Administrator »

As far as I know, there is no way to do this through RoM's API unless they recently changed it.
kramiel16
Posts: 1
Joined: Fri May 21, 2010 8:49 pm

Re: Opening / Targeting the Black Board (in Logar) in Backgr

#4 Post by kramiel16 »

how can you scan bulletin board (quest board) ?
is there a code like scanning like npc like this;
player:merchant("Shamar");

instead of clicking like this;
player:mouseclickL(440, 280, 825, 582);player:rest(1); <!-- Blackboard -->
player:mouseclickL(440, 280, 825, 582);player:rest(1); <!-- Blackboard -->
player:mouseclickL(150, 195, 825, 582);player:rest(1); <!-- Blackboard -->
------------------------------------------------

this doesn't work
player:merchant("Harf Trading Post Bulletin Board");
User avatar
rock5
Posts: 12173
Joined: Tue Jan 05, 2010 3:30 am
Location: Australia

Re: Opening / Targeting the Black Board (in Logar) in Backgr

#5 Post by rock5 »

kramiel16 wrote:how can you scan bulletin board (quest board) ?
is there a code like scanning like npc like this;
player:merchant("Shamar");

instead of clicking like this;
player:mouseclickL(440, 280, 825, 582);player:rest(1); <!-- Blackboard -->
player:mouseclickL(440, 280, 825, 582);player:rest(1); <!-- Blackboard -->
player:mouseclickL(150, 195, 825, 582);player:rest(1); <!-- Blackboard -->
------------------------------------------------

this doesn't work
player:merchant("Harf Trading Post Bulletin Board");
Sure you can. The new harvest function can be used to open the bulletin board. It doesn't use the mouse so doesn't need to be in the foreground.

Code: Select all

player:harvest(110584)
Note:This is the logar board id. To open a board somewhere else you would need to use a different id number.

I'm working on a target_Object() function that will be more versatile when it comes to opening objects so stay tuned. It will allow you to target items by name as well.
  • 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
Post Reply