Page 1 of 1

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

Posted: Sun Dec 13, 2009 3:25 pm
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!

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

Posted: Thu Dec 31, 2009 5:27 am
by mustang6868
Has no one an idea to solve this?

Any help is appreciated ;)

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

Posted: Thu Dec 31, 2009 3:24 pm
by Administrator
As far as I know, there is no way to do this through RoM's API unless they recently changed it.

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

Posted: Tue Jul 06, 2010 6:53 pm
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");

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

Posted: Tue Jul 06, 2010 11:16 pm
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.