Page 1 of 1

Goin out of the house?

Posted: Fri Apr 08, 2011 3:31 pm
by gloover
Hey guys,
I wanna start my bot in the house, so I've used this script:

Code: Select all

<!-- #  1 --><waypoint x="15" z="18" y="0">		
			player:target_NPC(110758) 
			sendMacro("ChoiceOption(1)") yrest(1000)
			waitForLoadingScreen()
	</waypoint>	
same script is usin to talk with ANY NPC. The bot select my housemaid, the dialog window opens and thats all! - he's not going out?!

the same script for going in:

Code: Select all

<!-- #  3 --><waypoint x="31746" z="3496" y="2">	
	player:target_NPC("Lamila"); --housemaid on elf island
			sendMacro("ChoiceOption(1)") yrest(1000)
			waitForLoadingScreen();	
</waypoint>
works like a charm, whats goin wrong on them?

thx for ya answers in advance!

Re: Goin out of the house?

Posted: Fri Apr 08, 2011 10:28 pm
by lisa
leave house is option 6, that is also assuming the id is right for housekeeper.

Re: Goin out of the house?

Posted: Fri Apr 08, 2011 10:33 pm
by rock5
To be honest, I don't know why it doesn't work. But I found another command that does work.

Code: Select all

sendMacro("SpeakFrame_ListDialogOption(1, 6)")
Try that.

Re: Goin out of the house?

Posted: Sat Apr 09, 2011 12:53 am
by lisa
Hmm you are right the choiceoption doesn't work for the other housekeepers either.

The code rock5 posted works like a charm though =)

Re: Goin out of the house?

Posted: Sat Apr 09, 2011 3:06 am
by gloover
thank u very much rock - your command works fine, u've again saved my day!