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
No edit summary
 
Line 6: Line 6:
== Example ==
== Example ==
<source lang=squirrel>
<source lang=squirrel>
function OnPlayerCommand( player,cmd , text )
function OnPlayerCommand(player, cmd, text)
     if ( cmd == "sound" )
     if ( cmd == "sound" )
     {
     {
    PlaySound( player.UniqueWorld , 30 , player.Pos );
          PlaySound( player.UniqueWorld, 30, player.Pos);
     }
     }



Latest revision as of 17:20, 25 September 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.