object.set_waypoint_timer
Change the timer that a waypoint displays.
Arguments
- timer
The word none, or an integer constant indicating the index of an object.timer variable, or a relative alias of an object-timer variable prefixed with
object.
i.e.object.alias_name
.
Example
for each object with label "koth_hill" do current_object.set_waypoint_timer(3) end alias capture_timer = object.timer[0] for each object with label "territory" do current_object.set_waypoint_timer(object.capture_timer) end for each object with label "ignore_me" do current_object.set_waypoint_timer(none) end
Notes
If the context object doesn't exist, then this function does nothing. It's safe to call this function without checking whether the object variable you're using is no_object.