AR/getSoundMaxDistance: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
 
(4 intermediate revisions by 2 users not shown)
Line 1: Line 1:
__NOTOC__  
__NOTOC__  
{{Client function}}
{{Client function}}
Gets a custom [[sound]] max distance at which the sound stops.
هذه الوظيفة تقوم بإحضار المسافه القصوى لتوقف الصوت.


==Syntax==  
==تركيب الوظيفة==  
<syntaxhighlight lang="lua">int getSoundMaxDistance ( element sound )</syntaxhighlight>  
<syntaxhighlight lang="lua">int getSoundMaxDistance ( element sound )</syntaxhighlight>  


===Required Arguments===  
===الفرغات المطلوبة===  
*'''sound:''' هو اسم الصوت.
*'''الصوت:''' متغير الصوت.


===Returns===
===المعطيات===
Returns an ''integer'' of the max distance, ''false'' if invalid arguments where passed.
* تعطي عدد صحيح لمسافة القصوي
* تعطي false اذا لم تنجح


==Example==  
==مثال==  
هذا المثال يقوم بإحضار المسافه القصوى للصوت في الشات عند كتابة هذا الامر /getmaxdistance
<section name="Client" class="client" show="true">
<section name="Client" class="client" show="true">
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
local sound = playSound3D("sounds/song.mp3", 373.14, -125.21, 1001, true)
local sound = playSound3D("sounds/song.mp3", 373.14, -125.21, 1001, true) -- تشغيل صوت في مكان معين


function getmaxdistanceFunc()
function getmaxdistanceFunc() -- إنشاء الوظيفه
   outputChatBox("Max distance: "..getSoundMaxDistance(sound))
   outputChatBox("مسافة الحد الاقصي: "..getSoundMaxDistance(sound)) -- إخراج المسافة القوصى للصوت في الشات
end
end -- إغلاق للوظيفه
addCommandHandler("getmaxdistance", getmaxdistanceFunc)
addCommandHandler("getmaxdistance", getmaxdistanceFunc) -- إضافة آمر معالج للوظيفة
</syntaxhighlight>
</syntaxhighlight>
</section>
</section>
Line 26: Line 28:
==أنظر أيضاً==
==أنظر أيضاً==
{{AR/Audio_functions}}
{{AR/Audio_functions}}
[[HU:getSoundMaxDistance]]
[[EN:getSoundMaxDistance]]
[[RO:getSoundMaxDistance]]
[[PT-BR:getSoundMaxDistance]]

Latest revision as of 19:56, 15 August 2021

هذه الوظيفة تقوم بإحضار المسافه القصوى لتوقف الصوت.

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

int getSoundMaxDistance ( element sound )

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

  • الصوت: متغير الصوت.

المعطيات

  • تعطي عدد صحيح لمسافة القصوي
  • تعطي false اذا لم تنجح

مثال

هذا المثال يقوم بإحضار المسافه القصوى للصوت في الشات عند كتابة هذا الامر /getmaxdistance

Click to collapse [-]
Client
local sound = playSound3D("sounds/song.mp3", 373.14, -125.21, 1001, true) -- تشغيل صوت في مكان معين

function getmaxdistanceFunc() -- إنشاء الوظيفه
  outputChatBox("مسافة الحد الاقصي: "..getSoundMaxDistance(sound)) -- إخراج المسافة القوصى للصوت في الشات
end -- إغلاق للوظيفه
addCommandHandler("getmaxdistance", getmaxdistanceFunc) -- إضافة آمر معالج للوظيفة

أنظر أيضاً