Scripting/Squirrel/Functions/PlaySoundForPlayer: Difference between revisions
Jump to navigation
Jump to search
This wiki is using an old backup from 2020
Some information may be old/missing
m (Do not sign your edits) |
m (Stormeus moved page PlaySoundForPlayer to Scripting/Squirrel/Functions/PlaySoundForPlayer) |
(No difference)
|
Revision as of 03:03, 11 March 2016
This Function Plays Sound for any specific player.
SYNTAX
PlaySoundForPlayer(player, soundID)
EXAMPLE
function onPlayerCommand( player, cmd, text )
{
if ( cmd == "playsound" )
{
if ( !text ) MessagePlayer("Syntax: /" + cmd + " [Sound ID]", player );
else
{
PlaySoundForPlayer(player, text.tointeger());
}
}
}