Scripting/Squirrel/Functions/PlaySoundForWorld

From Vice City Multiplayer
Revision as of 14:21, 10 March 2016 by Anik (talk | contribs) (Created page with "This Function Plays Sound for any specific World. == SYNTAX == '''PlaySoundForWorld(worldID, soundID)''' == EXAMPLE == <source lang="LUA"> function onPlayerCommand( player,...")
(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 Plays Sound for any specific World.

SYNTAX

PlaySoundForWorld(worldID, soundID)

EXAMPLE

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

By Anik