Page 1 of 1

Leave House Problem...Pls Help

Posted: Mon Dec 12, 2011 10:36 am
by Buster99
I have searched all over to find a solution to this and know it is probably a simple solution.

I am trying to simply leave my house. I have:

Code: Select all

<?xml version="1.0" encoding="utf-8"?><waypoints>
	<!-- #  1 --><waypoint x="30" z="30" y="0">
		player:target_NPC("Housekeeper");
		sendMacro("ChoiceOption(1);");
        	waitForLoadingScreen(); 
	</waypoint>
</waypoints>
The housekeeper menu opens but no option is chosen. My similar code for ENTERING house works fine. But for some reason the "ChoiceOption" does not work with housekeeper.

Ideas?

Re: Leave House Problem...Pls Help

Posted: Mon Dec 12, 2011 10:51 am
by lisa
I did a search for
leave house

and came up with this
http://www.solarstrike.net/phpBB3/viewt ... 672#p20672

what you need is

Code: Select all

player:target_NPC("Housekeeper");
sendMacro("SpeakFrame_ListDialogOption(1, 1)")
waitForLoadingScreen();

Re: Leave House Problem...Pls Help

Posted: Mon Dec 12, 2011 11:14 am
by Buster99
Tx for quick reply.

Actually, I should have mentioned before that I found that also with search but I used the example given of "6, 1" instead of changing it to "1, 1". DUH.

THANKS!