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 ...")
 
 
(One intermediate revision by one other user not shown)
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);
     }
     }


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

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.