Method ActionMoveTo
ActionMoveTo(Location, bool)
Instructs this creature to walk/run to the specified target location.
public Task ActionMoveTo(Location target, bool run = false)
Parameters
targetLocationThe location to move towards.
runboolIf true, the creature will run rather than walk.
Returns
ActionMoveTo(NwObject, bool, float)
Instructs this creature to walk/run to the specified target object.
public Task ActionMoveTo(NwObject target, bool run = false, float range = 1)
Parameters
targetNwObjectThe target object to move towards.
runboolIf true, the creature will run rather than walk.
rangefloatThe desired distance between the creature and the target object.