VP EVENT TELEPORT: Difference between revisions
Jump to navigation
Jump to search
Roy Curtis (talk | contribs) using attribute and function helpers |
Roy Curtis (talk | contribs) m -attr |
||
Line 1: | Line 1: | ||
{{SDK event page|Teleport|A request for the receiving client to teleport to a location, sent to the client from a {{sdk function|teleport}} call. | {{SDK event page|Teleport|A request for the receiving client to teleport to a location, sent to the client from a {{sdk function|teleport}} call. | ||
|behavior= | |behavior= | ||
* If {{sdk attribute|string|teleport_world|tag=}} is a blank string, it should be assumed that the client use its current world | * If {{sdk attribute|string|teleport_world|tag=}} is a blank string, it should be assumed that the client use its current world |
Revision as of 22:33, 24 August 2013
Event set and handler snippet
vp_event_set(instance, VP_EVENT_TELEPORT, event_teleport);
void event_teleport(VPInstance instance) { }
A request for the receiving client to teleport to a location, sent to the client from a vp_teleport()
call.
Attributes
- No attributes are used for this event
Behavior
- If VP_TELEPORT_WORLD is a blank string, it should be assumed that the client use its current world
- This event is only broadcasted to the target session; no other sessions will see it
- The teleport is not enforced by the server; the client may ignore the event
Examples
- This event has no usage examples; please add at least one to this page