Scripting/Squirrel/Functions/PlaySoundForWorld: 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 (Stormeus moved page PlaySoundForWorld to Scripting/Squirrel/Functions/PlaySoundForWorld) |
No edit summary |
||
Line 1: | Line 1: | ||
This Function | This Function will Play Sounds for any specific World | ||
== | == Syntax == | ||
<pre>PlaySoundForWorld(worldID, soundID)</pre> | |||
== | == Arguments == | ||
<source lang= | * ''int'' '''worldID''' - The world ID. | ||
function onPlayerCommand( player, cmd, text | * ''int'' '''soundID''' - The [[Sounds|sound ID]]. | ||
== Example == | |||
<source lang=squirrel> | |||
function onPlayerCommand( player, cmd, text ); | |||
{ | { | ||
PlaySoundForWorld(1, text.tointeger()); | if ( cmd == "playsound" ) | ||
} | { | ||
} | if ( !text ) | ||
{ | |||
MessagePlayer("Syntax: /playsound [Sound ID]", player); | |||
} | |||
else | |||
{ | |||
PlaySoundForWorld(1, text.tointeger()); | |||
} | |||
} | |||
} | } | ||
</source> | </source> | ||
=== Notes === | |||
Call [[onPlayerCommand]] were used in this example. More info about them in the corresponding pages. | |||
== Related Functions == | |||
{{Scripting/Squirrel/Functions/Game Functions}} |
Revision as of 15:48, 23 April 2016
This Function will Play Sounds for any specific World
Syntax
PlaySoundForWorld(worldID, soundID)
Arguments
- int worldID - The world ID.
- int soundID - The sound ID.
Example
function onPlayerCommand( player, cmd, text );
{
if ( cmd == "playsound" )
{
if ( !text )
{
MessagePlayer("Syntax: /playsound [Sound ID]", player);
}
else
{
PlaySoundForWorld(1, text.tointeger());
}
}
}
Notes
Call onPlayerCommand were used in this example. More info about them in the corresponding pages.