PL/getRadioChannelName: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
(Reformatted a little) |
||
(6 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
{{Client function}} | {{PL/Client function}} | ||
Funkcja pobiera nazwę radia o podanym przez nas ID. | Funkcja pobiera nazwę radia o podanym przez nas ID. | ||
==Składnia== | ==Składnia== | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
string getRadioChannelName ( int id ) | string getRadioChannelName ( int id ) | ||
</syntaxhighlight> | </syntaxhighlight> | ||
===Wymagane argumenty=== | ===Wymagane argumenty=== | ||
*'''id:''' | *'''id:''' ID radia, którego nazwę chcemy pobrać: | ||
{{ | {{PL/Radio Station IDs}} | ||
===Wynik=== | ===Wynik=== | ||
Jeśli nie wystąpił błąd to zwraca nazwę stacji radiowej, w przeciwnym razie zostanie zwrócony '''fałsz'''. | |||
==Przykład== | ==Przykład== | ||
<section name=" | <section name="Kod po stronie klienta" class="client" show="true"> | ||
Ten przykład wypisuje na czacie nazwę aktualnie aktywnej stacji radiowej. | |||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
addCommandHandler("getradio", | addCommandHandler("getradio", function() | ||
outputChatBox("W tym momencie słuchasz: "..getRadioChannelName(getRadioChannel()).."!") | |||
end) | |||
) | |||
</syntaxhighlight> | </syntaxhighlight> | ||
</section> | </section> | ||
==Zobacz również== | ==Zobacz również== | ||
{{PL/Client_audio_functions}} | |||
[[ar:getRadioChannelName]] | |||
[[de:getRadioChannelName]] | |||
[[en:getRadioChannelName]] | |||
[[es:getRadioChannelName]] | |||
[[hu:getRadioChannelName]] | |||
[[it:getRadioChannelName]] | |||
[[pt-br:getRadioChannelName]] | |||
[[ro:getRadioChannelName]] | |||
[[ru:getRadioChannelName]] | |||
[[tr:getRadioChannelName]] | |||
[[Category:PL/Client functions]] |
Latest revision as of 08:35, 28 September 2023
Funkcja pobiera nazwę radia o podanym przez nas ID.
Składnia
string getRadioChannelName ( int id )
Wymagane argumenty
- id: ID radia, którego nazwę chcemy pobrać:
- 0: Radio wyłączone
- 1: Playback FM
- 2: K-Rose
- 3: K-DST
- 4: Bounce FM
- 5: SF-UR
- 6: Radio Los Santos
- 7: Radio X
- 8: CSR 103.9
- 9: K-Jah West
- 10: Master Sounds 98.3
- 11: WCTR
- 12: Utwory użytkownika
Wynik
Jeśli nie wystąpił błąd to zwraca nazwę stacji radiowej, w przeciwnym razie zostanie zwrócony fałsz.
Przykład
Click to collapse [-]
Kod po stronie klientaTen przykład wypisuje na czacie nazwę aktualnie aktywnej stacji radiowej.
addCommandHandler("getradio", function() outputChatBox("W tym momencie słuchasz: "..getRadioChannelName(getRadioChannel()).."!") end)
Zobacz również
- getRadioChannel
- getRadioChannelName
- getSFXStatus
- getSoundBPM
- getSoundBufferLength
- getSoundEffectParameters
- getSoundEffects
- getSoundFFTData
- getSoundLength
- getSoundLevelData
- getSoundMaxDistance
- getSoundMetaTags
- getSoundMinDistance
- getSoundPan
- getSoundPosition
- getSoundProperties
- getSoundSpeed
- getSoundVolume
- getSoundWaveData
- isSoundLooped
- isSoundPanningEnabled
- isSoundPaused
- playSFX3D
- playSFX
- playSound3D
- playSound
- playSoundFrontEnd
- setRadioChannel
- setSoundEffectEnabled
- setSoundEffectParameter
- setSoundLooped
- setSoundMaxDistance
- setSoundMinDistance
- setSoundPan
- setSoundPanningEnabled
- setSoundPaused
- setSoundPosition
- setSoundProperties
- setSoundSpeed
- setSoundVolume
- stopSound