Difference between revisions of "LlWanderWithin"

From Second Life Wiki
Jump to navigation Jump to search
Line 36: Line 36:
* [[llDeleteCharacter]]
* [[llDeleteCharacter]]
* [[llEvade]]
* [[llEvade]]
* [[llExecPathingCmd]]
* [[llExecCharacterCmd]]
* [[llGetClosestNavPoint]]
* [[llGetClosestNavPoint]]
* [[llFleeFrom]]
* [[llFleeFrom]]

Revision as of 14:54, 16 February 2012

Summary

Function: llWanderWithin( vector origin, list options );

Sets a character to wander about a central spot within a specified radius.

• vector origin Central point to wander about.
• list options No options available at this time.

Caveats

  • Must use llCreateCharacter or script won't compile.
  • Wander area is a rough area based on the specified origin, to a specified radius. So, if 10.0m is specified the object will wander within an area 20m to a side, centered on origin.
  • Wander area can be limited to a smaller area by introducing obstacles such as walls.
  • Vertical positions specified for any vectors should be chosen to be as close as possible to the actual height of the terrain requested. Large difference between the provided vertical position and the actual terrain/object will result in failure of the behavior.
All Issues ~ Search JIRA for related Bugs

Examples

<lsl> default {

   state_entry()
   {
       llCreateCharacter([CHARACTER_DESIRED_SPEED, 50.0]);
   }
   touch_start(integer total_number)
   {
       llWanderWithin(llGetPos(), 10.0, []);
   }

}

</lsl>

Deep Notes

Search JIRA for related Issues

Signature

function void llWanderWithin( vector origin, list options );