Player.PlaySound

From Vice City Multiplayer
Revision as of 15:35, 26 January 2017 by NicusorN5 (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Caution icon
This wiki is using an old backup from 2020
Some information may be old/missing

This Function is identical to the PlaySoundForPlayer function in behavior

Syntax

player.PlaySound(soundID)

Example

function onPlayerCommand( player, cmd, text )
{
if ( cmd == "playsound" )
{
if ( !text ) MessagePlayer("Syntax: /" + cmd + " [Sound ID]", player );
else
{
player.PlaySound(text.tointeger());
}
}
}