Player.PlaySound: 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 Function is identical to the PlaySoundForPlayer function in behavior == SYNTAX == '''player.PlaySound(soundID)''' == EXAMPLE == <source lang="LUA"> function onPlayerCo...")
 
No edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
This Function is identical to the PlaySoundForPlayer function in behavior
This Function is identical to the PlaySoundForPlayer function in behavior


== SYNTAX ==
== Syntax ==
'''player.PlaySound(soundID)'''
'''player.PlaySound(soundID)'''


== EXAMPLE ==
== Example ==


<source lang="LUA">
<source lang="LUA">
Line 19: Line 19:
}
}
</source>
</source>
By Anik

Latest revision as of 15:35, 26 January 2017

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());
}
}
}