Jump to content

x[ مشكلة ]x عدم اطفاء الانشودة


Recommended Posts

السلام عليكم ورحمة الله وبركاته

انا عندي مشكلة المفروض يطفي الصوت ماطفاه وش السبب

addEventHandler("onClientGUIClick",root, 
function () 
if source == start then 
local s = playSound("****************") 
    setSoundVolume(player,1) 
 end 
end) 
addEventHandler("onClientGUIClick",root, 
function () 
if source == stop then 
local a = playSound("") 
setSoundVolume(player,0) 
 end 
end) 

Link to comment
addEventHandler("onClientGUIClick",root, 
function () 
if source == start then 
 if isElement(s) then stopSound(s) end  
s = playSound("****************") 
    setSoundVolume(s,1) 
 end 
end 
) 
  
addEventHandler("onClientGUIClick",root, 
function () 
if source == stop then 
if isElement(s) then 
stopSound(s) 
 end 
end 
end 
) 

Edited by Guest
Link to comment
addEventHandler("onClientGUIClick",root, 
function () 
if source == start then 
local s = playSound("****************") 
    setSoundVolume(s,1) 
 end 
end 
) 
  
addEventHandler("onClientGUIClick",root, 
function () 
if source == stop then 
if isElement(s) then  
stopSound(s) 
 end 
end 
) 

أتوقع كودك ما راح يظبط

لأنك حاط لـ متغير الصوت لوكال ، ولوكال يحصر الكود داخل الفنكشن

يعني بالحدث حق الإيقاف المتغير اللي هو حرف إس ما راح يكون متعرف

لذلك شيل لوكال من الصوت ، ويصير كذا

s = playSound("****************") 

ماني متأكد من الكلام ذا بس أتوقع أنه صحيح

Link to comment
addEventHandler("onClientGUIClick",root, 
function () 
if source == start then 
music = playSound("music.mp3") 
setSoundVolume(music,1) 
elseif source == stop then 
destroyElement(music) 
 end 
end 
) 

إستخدم

isElement

عشان م تطلع أخطاء بالديبق

Link to comment

غير مجرب

addEventHandler("onClientGUIClick",start, 
function () 
Song_ = playSound("music.mp3") 
setSoundVolume( music,1 ) 
if ( isElement ( Song_ ) ) then destroyElement ( Song_ ) end 
end 
) 
  
addEventHandler("onClientGUIClick",stop, 
function ( ) 
if isElement( Song_ ) then 
stopSound ( Song_ ) 
end 
) 
Link to comment
غير مجرب

addEventHandler("onClientGUIClick",start, 
function () 
Song_ = playSound("music.mp3") 
setSoundVolume( music,1 ) 
if ( isElement ( Song_ ) ) then destroyElement ( Song_ ) end 
end 
) 
  
addEventHandler("onClientGUIClick",stop, 
function ( ) 
if isElement( Song_ ) then 
stopSound ( Song_ ) 
end 
) 
Song_ = playSound("music.mp3") 
setSoundVolume( music,1 ) 

عدل

music

لـ

Song_

وعندك بالحدث حق الإيقاف إند ناقصه

Link to comment
غير مجرب

addEventHandler("onClientGUIClick",start, 
function () 
Song_ = playSound("music.mp3") 
setSoundVolume( music,1 ) 
if ( isElement ( Song_ ) ) then destroyElement ( Song_ ) end 
end 
) 
  
addEventHandler("onClientGUIClick",stop, 
function ( ) 
if isElement( Song_ ) then 
stopSound ( Song_ ) 
end 
) 

المفروض تستبدل السطر ال 5 بالسطر ال 3

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...