AR/stopSound

From Multi Theft Auto: Wiki
Revision as of 16:32, 8 May 2013 by KING-ABADY (talk | contribs)
Jump to navigation Jump to search

sound تستخدم هذه الوضيفة في أيقاف صوت محدد

Syntax

bool stopSound ( element theSound )

العناصر المطلوبة

  • theSound: sound الصوت المراد ايقافه.

Returns

  • Returns: true اذا تم ايقاف الصوت بنجاح, false اذا لم ينجح.

مثال

Click to collapse [-]
Client
function startMySound() -- وضيفة
    sound = playSound( "sound.mp3", true ) -- تشغيل صوت
end -- اغلآق الوضيفة
addEventHandler( "onClientResourceStart", getResourceRootElement( getThisResource() ), startMySound ) -- حدث بداية السكربت لتشغيل وضيفة الصوت
 
function stopMySound() -- وضيفة
    stopSound( sound ) -- ايقاف الصوت
end -- اغلآق الوضيفة
addCommandHandler ( "stopsound", stopMySound ) -- الأمر المستخدم لتنفيذ وضيفة ايقاف الصوت

أنظر أيضاً