Page 1 of 1

problem using AcceptBorderQuest()

Posted: Sun Feb 17, 2013 1:43 pm
by botique
I have some trouble accepting a border quest.
The command

Code: Select all

inventory:useItem("Arrowhead Carved with Name");RoMScript("AcceptBorderQuest()")
picks up the quest, but it does not close (or it does not always close) the popup window that appears after using the item.
Is there any way to close that window? I think it interferes with the next time I use the command (after completing the quest, of course).
I tried

Code: Select all

RoMScript("CloseWindows()")
without any effect.

Re: problem using AcceptBorderQuest()

Posted: Sun Feb 17, 2013 4:38 pm
by Ego95

Code: Select all

RoMScript("CloseWindows()")
I'm not sure if that exists. Didn't it is

Code: Select all

RoMScript("CloseAllWindows()")
?

Edit: If that doesn't work try

Code: Select all

RoMScript("ScriptBorder:Hide()")
. I just saw it in an other topic.

AlterEgo95

Re: problem using AcceptBorderQuest()

Posted: Sun Feb 17, 2013 4:57 pm
by botique
AlterEgo95 wrote:...

Edit: If that doesn't work try

Code: Select all

RoMScript("ScriptBorder:Hide()")
. I just saw it in an other topic.

AlterEgo95
Excellent, the above command did the trick! Many thanks!