AR/getRadioChannelName: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
 
(8 intermediate revisions by one other user not shown)
Line 1: Line 1:
__NOTOC__  
__NOTOC__  
{{Client function}}
{{Client function}}
. هذه الدالة الحصول على اسم قناة راديو معين
. هذا الوظيفة تجلب اسم محطة الراديو


==Syntax==  
==تركيب الوظيفة==  
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
string getRadioChannelName ( int id )             
string getRadioChannelName ( int id )             
</syntaxhighlight>  
</syntaxhighlight>  


===Required Arguments===  
===الفراغات المطلوبة===  
*'''id:''' . الاي دي محطة الراديو التي تريد الحصول على الاسم.من رقم من 0 إلى 12
*'''id:''' . الاي دي محطة الراديو التي تريد الحصول على الاسم.من رقم من 0 إلى 12


{{SoundID}}
{{SoundID}}


===Returns===
===المعطيات===
Returns a string containing the station name if successful, ''false'' otherwise.
اذا نجحت تعطي نص يحتوي علي اسم المحطة اذا لم تنجح تعود ب false.


==مثال==
==مثال==
<section name="Client" class="client" show="true">
<section name="Client" class="client" show="true">
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
addCommandHandler("getradio",
addCommandHandler ( "getradio", -- اضافة امر 
     function()
     function () -- بداية الوظيفة
         outputChatBox("You're currently listening to "..getRadioChannelName(getRadioChannel()).."!")
         outputChatBox ( "انت الان تستمع ل " .. getRadioChannelName ( getRadioChannel() ) .. "!" ) -- اخراج رسالة فى الدردشة بأسم محطة الراديو الحالية
     end
     end --  نهاية الوظيفة
)
) -- نهاية الامر
</syntaxhighlight>
</syntaxhighlight>
</section>
</section>
Line 30: Line 30:


{{AR/Audio_functions}}
{{AR/Audio_functions}}
[[EN:GetRadioChannelName]]
[[HU:GetRadioChannelName]]
[[AR:getRadioChannelName]]
[[RU:GetRadioChannelName]]
[[PL:GetRadioChannelName]]
[[RO:GetRadioChannelName]]
[[PT-BR:GetRadioChannelName]]

Latest revision as of 17:01, 15 August 2021

. هذا الوظيفة تجلب اسم محطة الراديو

تركيب الوظيفة

string getRadioChannelName ( int id )             

الفراغات المطلوبة

  • id: . الاي دي محطة الراديو التي تريد الحصول على الاسم.من رقم من 0 إلى 12
  • 0: Radio Off
  • 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: User Track Player

المعطيات

اذا نجحت تعطي نص يحتوي علي اسم المحطة اذا لم تنجح تعود ب false.

مثال

Click to collapse [-]
Client
addCommandHandler ( "getradio",  -- اضافة امر  
    function () -- بداية الوظيفة
        outputChatBox ( "انت الان تستمع ل " .. getRadioChannelName ( getRadioChannel() ) .. "!" ) -- اخراج رسالة فى الدردشة بأسم محطة الراديو الحالية
    end --  نهاية الوظيفة
) -- نهاية الامر

أنظر أيضاً