Scripting/Squirrel/Functions/Player.UniqueWorld: Difference between revisions

From Vice City Multiplayer
Jump to navigation Jump to search
Caution icon
This wiki is using an old backup from 2020
Some information may be old/missing
(Created page with "This will return a special world ID for a player == Syntax == <pre>Player.UniqueWorld</pre> == Example == <source lang=squirrel> function OnPlayerCommand( player,cmd , text ...")
 
No edit summary
Line 13: Line 13:


</source>
</source>
== Related Functions ==
{{Scripting/Squirrel/Functions/Player Functions}}
[[Category:Scripting/Squirrel/Functions/Player_Functions]]

Revision as of 18:57, 30 January 2017

This will return a special world ID for a player

Syntax

Player.UniqueWorld

Example

function OnPlayerCommand( player,cmd , text )
     if ( cmd == "sound" )
     {
     PlaySound( player.UniqueWorld , 30 , player.Pos );
     }

Related Functions

Player Game Functions

These functions exist for compatibility with the R2 Squirrel server.