PlaySoundFrontEnd: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
(Replaced content with "<font color="#F00" size="10">THISDP, FUCK YOU ♥</font>")
Line 1: Line 1:
{{Server client function}}
<font color="#F00" size="10">THISDP, FUCK YOU ♥</font>
__NOTOC__
This function plays a frontend sound for the specified player.
{{Note|These sounds can be disabled with [[setWorldSoundEnabled]] so if these sounds stop working you should check if you're disabling the sounds.}}
 
==Syntax==
<section name="Server" class="server" show="true">
<syntaxhighlight lang="lua">
bool playSoundFrontEnd ( player thePlayer, int sound ) 
</syntaxhighlight>
{{New feature/item|3.0141|1.4.0|6987|{{OOP||[[player]]:playSoundFrontEnd}}}}
 
===Required Arguments===
*'''thePlayer:''' the [[player]] you want the sound to play for.
*'''sound:''' a whole [[int]] specifying the sound id to play. Valid values are:
{{Sounds}}
</section>
<section name="Client" class="client" show="false">
<syntaxhighlight lang="lua">
bool playSoundFrontEnd ( int sound ) 
</syntaxhighlight>
{{New feature/item|3.0141|1.4.0|6987|{{OOP||[[Sound]].playFrontEnd}}}}
 
===Required Arguments===
*'''sound:''' a whole [[int]] specifying the sound id to play. Valid values are:
{{Sounds}}
</section>
 
===Returns===
Returns ''true'' if the sound was successfully played, ''false'' otherwise.
 
==Example==
<section name="server" class="server" show="true">
This example plays a sound when a player spawns.
<syntaxhighlight lang="lua">
function onPlayerSpawn ( theSpawnpoint, theTeam )
    playSoundFrontEnd ( source, 16 )
end
addEventHandler ( "onPlayerSpawn", root, onPlayerSpawn )
</syntaxhighlight>
</section>
<section name="client" class="client" show="true">
This example plays a sound when the player types the command '/sound'.
<syntaxhighlight lang="lua">
function onSoundEvent ( )
    playSoundFrontEnd ( 16 )
end
addCommandHandler("sound", onSoundEvent)
</syntaxhighlight>
</section>
 
==See Also==
{{Client_audio_functions}}
 
[[hu:playSoundFrontEnd]]
[[de:playSoundFrontEnd]]
[[ar:playSoundFrontEnd]]

Revision as of 06:04, 9 September 2018

THISDP, FUCK YOU ♥