SetPlayerDimension: Difference between revisions

From Onset Developer Wiki
No edit summary
No edit summary
 
Line 3: Line 3:
{{FuncDescription|Sets the dimension (Virtual World) of this player. Players can only see players and other entities in the same dimension.
{{FuncDescription|Sets the dimension (Virtual World) of this player. Players can only see players and other entities in the same dimension.
* Default dimension: 0
* Default dimension: 0
* Maximum dimension: 4294967295
* Maximum dimension: 4294967295}}
 
You should set the players voice dimension as well [[SetPlayerVoiceDimension]].}}


{{FuncSyntax|SetPlayerDimension(player, dimension)}}
{{FuncSyntax|SetPlayerDimension(player, dimension)}}

Latest revision as of 11:06, 2 September 2020

SetPlayerDimension

Type: Function
Context: Server
Introduced: v1.0

Description

Sets the dimension (Virtual World) of this player. Players can only see players and other entities in the same dimension.

  • Default dimension: 0
  • Maximum dimension: 4294967295

Syntax

SetPlayerDimension(player, dimension)

Parameters

  • player
    The player identifier.
  • dimension
    The new dimension to set.

Return Value

  • This function returns nothing.

Example

Player dimension example can be found in the race package: https://github.com/BlueMountainsIO/OnsetLuaScripts/blob/master/race/server/race.lua#L422

See also