Scripting/Squirrel/Functions/PlaySoundForPlayer: 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 Plays Sound for any specific player. == SYNTAX == '''PlaySoundForPlayer(player, soundID)''' == EXAMPLE == <source lang="D"> function onPlayerCommand( player,...")
 
m (Do not sign your edits)
Line 19: Line 19:
}
}
</source>
</source>
By Anik

Revision as of 02:59, 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());
}
}
}