IT/playSoundFrontEnd: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
m (→Esempio) |
||
Line 29: | Line 29: | ||
==Esempio== | ==Esempio== | ||
<section name="server" class="server" show=" | <section name="server" class="server" show="false"> | ||
Questo esempio esegue un suono quando un giocatore spawna. | Questo esempio esegue un suono quando un giocatore spawna. | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
Line 38: | Line 38: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
</section> | </section> | ||
<section name="client" class="client" show=" | <section name="client" class="client" show="false"> | ||
Questo esempio esegue un suono quando il server attiva un evento client onSoundEvent. | Questo esempio esegue un suono quando il server attiva un evento client onSoundEvent. | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> |
Revision as of 17:25, 14 June 2008
« Torna alla Pagina principale italiana ▇▇▇.
Questa funzione avvia un suono ad un giocatore.
Sintassi
Click to collapse [-]
Serverbool playSoundFrontEnd ( player thePlayer, int sound )
Argomenti richiesti
- thePlayer: Il player a cui vuoi far sentire il suono.
- sound: Un valore integer contenente l'ID del suono. I valori validi sono:
- 0 - 20 Suoni di Selezione
- 27 - 30 Suoni Proiettili
- 32 - 33 Suoni di Selezione
- 34 Disturbo Radio
- 35 Ferma Disturbo Radio
- 37 - 38 Tick
- 40 Suoni di Selezione
- 41 - 42 Tick (munizioni finite)
- 43 - 45 Countdown
- 46 Riparazione
- 47 Rumore Disturbato
- 48 Ferma Rumore Disturbato
- 49 Disturbo corto
- 101 Countdown/Selezione
Click to expand [+]
ClientValori restituiti
Restituisce true se il suono è stato correttamente eseguito, false altrimenti.
Esempio
Click to expand [+]
serverClick to expand [+]
client