Page 1 of 1

Ride mount, ignore mobs

Posted: Sun Mar 04, 2012 4:50 pm
by Caspy
Hey,
I was wondering, is there a function to ignore mobs when riding mounts?

Or something that can be added in the waypoint like

Code: Select all

<!-- #  1 --><waypoint x="1" z="1" y="1" >	player:mount(); </waypoint>
<!-- #  2 --><waypoint x="2" z="2" y="2" do="ride">	</waypoint>
I thought i saw this 2nd option somewhere before but can't find it anymore.
The do="ride" would than avoid my bot stopping to kill the mobs and just move from waypoint to waypoint on the mount.

Re: Ride mount, ignore mobs

Posted: Sun Mar 04, 2012 8:34 pm
by lisa
moved out of the userfunction section of forum....

as to the question, it's called "TRAVEL"

Code: Select all

<!-- #  1 --><waypoint x="1" z="1" y="1" >   player:mount(); </waypoint>
<!-- #  2 --><waypoint x="2" z="2" y="2" type="TRAVEL">   </waypoint>
that will make it ignore mobs for that single waypoint.

if you want the entire WP to ignore mobs then do this
first line of any WP looks like this.

Code: Select all

<?xml version="1.0" encoding="utf-8"?><waypoints>	
change it to

Code: Select all

<?xml version="1.0" encoding="utf-8"?><waypoints type="TRAVEL">	

Re: Ride mount, ignore mobs

Posted: Mon Mar 05, 2012 1:33 pm
by Caspy
Thank you Lisa :) Am just creating some card / Talent point farming bots for fun with this x)