S4MuEL Posted April 12, 2013 Share Posted April 12, 2013 (edited) السلآمم عليكمم لآهنتمم بغيت ممسآعدةة بـ تصحيح كود * إذآ وآحد ظغط ع تشغيل الصوت ووصصل بـ سيآرتهه 40 كمم الصوت يشتغل وإذآ انخفضضت سسرعتهه تحت الـ 40 الصوت ينققآفف وإذآ رجعت سسرعتهه مرةة ثانيةة لل 40 الصصوت يشتغل وتسسذآ نففس الشي آممآ إذآ ظغط الاعب ايقافف الصصوت الصوت ينققآفف حتى ولو وصلت سسرعتهه مليون ذذ ططبعآ عآرفف الكود بهه أغغلآطط -_-" الكود !: GUIEditor = { button = {}, staticimage = {}, window = {}, } GUIEditor.window[1] = guiCreateWindow(197, 141, 433, 368, "~ > | التعزيز الصصوتي | < ~", false) guiWindowSetSizable(GUIEditor.window[1], false) guiSetAlpha(GUIEditor.window[1], 0.95) guiSetVisible(GUIEditor.window[1], false) GUIEditor.staticimage[1] = guiCreateStaticImage(9, 21, 415, 338, "1.png", false, GUIEditor.window[1]) GUIEditor.button[1] = guiCreateButton(19, 224, 146, 52, "تششغيل التعزيز الصصوتي !", false, GUIEditor.staticimage[1]) guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FF14F608") GUIEditor.button[2] = guiCreateButton(238, 223, 146, 52, "إيققآفف التعزيز الصصوتي !", false, GUIEditor.staticimage[1]) guiSetProperty(GUIEditor.button[2], "NormalTextColour", "FFFF0000") GUIEditor.button[3] = guiCreateButton(148, 291, 97, 37, "إغلآقق النآفذةة !", false, GUIEditor.staticimage[1]) guiSetProperty(GUIEditor.button[3], "NormalTextColour", "FF15AFE8") bindKey ( "F9" , "down" , function() if ( guiGetVisible ( GUIEditor.window[1] ) == true ) then guiSetVisible ( GUIEditor.window[1] ,false ) showCursor (false ) guiSetInputEnabled(false) elseif ( guiGetVisible ( GUIEditor.window[1] ) == false ) then guiSetVisible ( GUIEditor.window[1] ,true ) showCursor (true) end end ) addEventHandler("onClientGUIClick",root, function ( ) if source == GUIEditor.button[1] then if not isPedInVehicle(localPlayer) then return outputChatBox("#ff0000يجب أن تكون لديك سسيآرةة , # !",0,255,0,true) end; function getVehicleSpeed ( v, i ) if i == nil then i = 0 end if isElement ( v ) then local x,y,z = getElementVelocity ( v ) if ( i == "mph" or i == 1 or i == "1" ) then return ( x^2 + y^2 + z^2 ) ^ 0.5 * 100 else return ( x^2 + y^2 + z^2 ) ^ 0.5 * 1.61 * 100 end else return false end end setTimer ( function ( ) if isPedInVehicle ( localPlayer ) then local Vehicle = getPedOccupiedVehicle ( localPlayer ); local Speed = getVehicleSpeed ( Vehicle, "kmh" ); if Speed >= 40 then musics = playSound("t3zez1.mp3",true) setSoundVolume(musics,1) elseif Speed <= 40 then musics = stopSound("t3zez1.mp3",true) setSoundVolume(musics,0) end end end, 2000, 0 ); elseif ( source == GUIEditor.button[3] ) then guiSetVisible(GUIEditor.window[1], false) showCursor(false) end end ) Edited April 13, 2013 by Guest Link to comment
===|OSAMA|=== Posted April 13, 2013 Share Posted April 13, 2013 -- Client Side ! GUIEditor = { button = {}, staticimage = {}, window = {}, } GUIEditor.window[1] = guiCreateWindow(197, 141, 433, 368, "~ > | التعزيز الصصوتي | < ~", false) guiWindowSetSizable(GUIEditor.window[1], false) guiSetAlpha(GUIEditor.window[1], 0.95) guiSetVisible(GUIEditor.window[1], false) GUIEditor.staticimage[1] = guiCreateStaticImage(9, 21, 415, 338, "1.png", false, GUIEditor.window[1]) GUIEditor.button[1] = guiCreateButton(19, 224, 146, 52, "تششغيل التعزيز الصصوتي !", false, GUIEditor.staticimage[1]) guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FF14F608") GUIEditor.button[2] = guiCreateButton(238, 223, 146, 52, "إيققآفف التعزيز الصصوتي !", false, GUIEditor.staticimage[1]) guiSetProperty(GUIEditor.button[2], "NormalTextColour", "FFFF0000") GUIEditor.button[3] = guiCreateButton(148, 291, 97, 37, "إغلآقق النآفذةة !", false, GUIEditor.staticimage[1]) guiSetProperty(GUIEditor.button[3], "NormalTextColour", "FF15AFE8") bindKey ( "F9" , "down" , function( ) if ( guiGetVisible ( GUIEditor.window[1] ) == true ) then guiSetVisible ( GUIEditor.window[1] ,false ) showCursor (false ) guiSetInputEnabled(false) else guiSetVisible ( GUIEditor.window[1] ,true ) showCursor (true) end end ) musics = playSound ( "t3zez1.mp3", true ) setSoundVolume ( musics, 1 ) setSoundPaused ( musics, true ) addEventHandler ( "onClientGUIClick", root, function ( ) if ( source == GUIEditor.button[1] ) then if not ( isPedInVehicle ( localPlayer ) ) then return outputChatBox("#ff0000يجب أن تكون لديك سسيآرةة , # !",0,255,0,true) end; if ( isTimer ( SpeedTimer ) ) then return outputChatBox("#ff0000لقد قمت بتشغيل التعزيز الصوتي من قبل , # !",0,255,0,true) end SpeedTimer = setTimer ( function ( ) if ( isPedInVehicle ( localPlayer ) ) then local Vehicle = getPedOccupiedVehicle ( localPlayer ); local Speed = getVehicleSpeed ( Vehicle, "kmh" ); if ( Speed >= 40 ) then if ( isSoundPaused ( musics ) ) then setSoundPaused ( musics, false ) end else if ( not isSoundPaused ( musics ) ) then setSoundPaused ( musics, true ) end end else if ( not isSoundPaused ( musics ) ) then setSoundPaused ( musics, true ) end if ( isTimer ( SpeedTimer ) ) then killTimer ( SpeedTimer ) end end end, 2000, 0 ); elseif ( source == GUIEditor.button[2] ) then if ( isTimer ( SpeedTimer ) ) then killTimer ( SpeedTimer ) if ( not isSoundPaused ( musics ) ) then setSoundPaused ( musics, true ) end else outputChatBox ( "* أنت لم تقم بتشغيل التعزيز الصوتي من قبل ، حتى تقوم بإلغائه !", 255, 0, 0, true ) end elseif ( source == GUIEditor.button[3] ) then guiSetVisible(GUIEditor.window[1], false) showCursor(false) end end ) function getVehicleSpeed ( v, i ) if i == nil then i = 0 end if isElement ( v ) then local x,y,z = getElementVelocity ( v ) if ( i == "mph" or i == 1 or i == "1" ) then return ( x^2 + y^2 + z^2 ) ^ 0.5 * 100 else return ( x^2 + y^2 + z^2 ) ^ 0.5 * 1.61 * 100 end else return false end end Link to comment
فاّرس Posted April 13, 2013 Share Posted April 13, 2013 -- Client Side ! GUIEditor = { button = {}, staticimage = {}, window = {}, } GUIEditor.window[1] = guiCreateWindow(197, 141, 433, 368, "~ > | التعزيز الصصوتي | < ~", false) guiWindowSetSizable(GUIEditor.window[1], false) guiSetAlpha(GUIEditor.window[1], 0.95) guiSetVisible(GUIEditor.window[1], false) GUIEditor.staticimage[1] = guiCreateStaticImage(9, 21, 415, 338, "1.png", false, GUIEditor.window[1]) GUIEditor.button[1] = guiCreateButton(19, 224, 146, 52, "تششغيل التعزيز الصصوتي !", false, GUIEditor.staticimage[1]) guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FF14F608") GUIEditor.button[2] = guiCreateButton(238, 223, 146, 52, "إيققآفف التعزيز الصصوتي !", false, GUIEditor.staticimage[1]) guiSetProperty(GUIEditor.button[2], "NormalTextColour", "FFFF0000") GUIEditor.button[3] = guiCreateButton(148, 291, 97, 37, "إغلآقق النآفذةة !", false, GUIEditor.staticimage[1]) guiSetProperty(GUIEditor.button[3], "NormalTextColour", "FF15AFE8") bindKey ( "F9" , "down" , function( ) if ( guiGetVisible ( GUIEditor.window[1] ) == true ) then guiSetVisible ( GUIEditor.window[1] ,false ) showCursor (false ) guiSetInputEnabled(false) else guiSetVisible ( GUIEditor.window[1] ,true ) showCursor (true) end end ) musics = playSound ( "t3zez1.mp3", true ) setSoundVolume ( musics, 1 ) setSoundPaused ( musics, true ) addEventHandler ( "onClientGUIClick", root, function ( ) if ( source == GUIEditor.button[1] ) then if not ( isPedInVehicle ( localPlayer ) ) then return outputChatBox("#ff0000يجب أن تكون لديك سسيآرةة , # !",0,255,0,true) end; if ( isTimer ( SpeedTimer ) ) then return outputChatBox("#ff0000لقد قمت بتشغيل التعزيز الصوتي من قبل , # !",0,255,0,true) end SpeedTimer = setTimer ( function ( ) if ( isPedInVehicle ( localPlayer ) ) then local Vehicle = getPedOccupiedVehicle ( localPlayer ); local Speed = getVehicleSpeed ( Vehicle, "kmh" ); if ( Speed >= 40 ) then if ( isSoundPaused ( musics ) ) then setSoundPaused ( musics, false ) end else if ( not isSoundPaused ( musics ) ) then setSoundPaused ( musics, true ) end end else if ( not isSoundPaused ( musics ) ) then setSoundPaused ( musics, true ) end if ( isTimer ( SpeedTimer ) ) then killTimer ( SpeedTimer ) end end end, 2000, 0 ); elseif ( source == GUIEditor.button[2] ) then if ( isTimer ( SpeedTimer ) ) then killTimer ( SpeedTimer ) if ( not isSoundPaused ( musics ) ) then setSoundPaused ( musics, true ) end else outputChatBox ( "* أنت لم تقم بتشغيل التعزيز الصوتي من قبل ، حتى تقوم بإلغائه !", 255, 0, 0, true ) end elseif ( source == GUIEditor.button[3] ) then guiSetVisible(GUIEditor.window[1], false) showCursor(false) end end ) function getVehicleSpeed ( v, i ) if i == nil then i = 0 end if isElement ( v ) then local x,y,z = getElementVelocity ( v ) if ( i == "mph" or i == 1 or i == "1" ) then return ( x^2 + y^2 + z^2 ) ^ 0.5 * 100 else return ( x^2 + y^2 + z^2 ) ^ 0.5 * 1.61 * 100 end else return false end end كذا راح يتكرر الصوت كثيييير,, مابي احط الكود مابي اتحمل ذنوب الاغاني,, Link to comment
===|OSAMA|=== Posted April 13, 2013 Share Posted April 13, 2013 -- Client Side ! GUIEditor = { button = {}, staticimage = {}, window = {}, } GUIEditor.window[1] = guiCreateWindow(197, 141, 433, 368, "~ > | التعزيز الصصوتي | < ~", false) guiWindowSetSizable(GUIEditor.window[1], false) guiSetAlpha(GUIEditor.window[1], 0.95) guiSetVisible(GUIEditor.window[1], false) GUIEditor.staticimage[1] = guiCreateStaticImage(9, 21, 415, 338, "1.png", false, GUIEditor.window[1]) GUIEditor.button[1] = guiCreateButton(19, 224, 146, 52, "تششغيل التعزيز الصصوتي !", false, GUIEditor.staticimage[1]) guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FF14F608") GUIEditor.button[2] = guiCreateButton(238, 223, 146, 52, "إيققآفف التعزيز الصصوتي !", false, GUIEditor.staticimage[1]) guiSetProperty(GUIEditor.button[2], "NormalTextColour", "FFFF0000") GUIEditor.button[3] = guiCreateButton(148, 291, 97, 37, "إغلآقق النآفذةة !", false, GUIEditor.staticimage[1]) guiSetProperty(GUIEditor.button[3], "NormalTextColour", "FF15AFE8") bindKey ( "F9" , "down" , function( ) if ( guiGetVisible ( GUIEditor.window[1] ) == true ) then guiSetVisible ( GUIEditor.window[1] ,false ) showCursor (false ) guiSetInputEnabled(false) else guiSetVisible ( GUIEditor.window[1] ,true ) showCursor (true) end end ) musics = playSound ( "t3zez1.mp3", true ) setSoundVolume ( musics, 1 ) setSoundPaused ( musics, true ) addEventHandler ( "onClientGUIClick", root, function ( ) if ( source == GUIEditor.button[1] ) then if not ( isPedInVehicle ( localPlayer ) ) then return outputChatBox("#ff0000يجب أن تكون لديك سسيآرةة , # !",0,255,0,true) end; if ( isTimer ( SpeedTimer ) ) then return outputChatBox("#ff0000لقد قمت بتشغيل التعزيز الصوتي من قبل , # !",0,255,0,true) end SpeedTimer = setTimer ( function ( ) if ( isPedInVehicle ( localPlayer ) ) then local Vehicle = getPedOccupiedVehicle ( localPlayer ); local Speed = getVehicleSpeed ( Vehicle, "kmh" ); if ( Speed >= 40 ) then if ( isSoundPaused ( musics ) ) then setSoundPaused ( musics, false ) end else if ( not isSoundPaused ( musics ) ) then setSoundPaused ( musics, true ) end end else if ( not isSoundPaused ( musics ) ) then setSoundPaused ( musics, true ) end if ( isTimer ( SpeedTimer ) ) then killTimer ( SpeedTimer ) end end end, 2000, 0 ); elseif ( source == GUIEditor.button[2] ) then if ( isTimer ( SpeedTimer ) ) then killTimer ( SpeedTimer ) if ( not isSoundPaused ( musics ) ) then setSoundPaused ( musics, true ) end else outputChatBox ( "* أنت لم تقم بتشغيل التعزيز الصوتي من قبل ، حتى تقوم بإلغائه !", 255, 0, 0, true ) end elseif ( source == GUIEditor.button[3] ) then guiSetVisible(GUIEditor.window[1], false) showCursor(false) end end ) function getVehicleSpeed ( v, i ) if i == nil then i = 0 end if isElement ( v ) then local x,y,z = getElementVelocity ( v ) if ( i == "mph" or i == 1 or i == "1" ) then return ( x^2 + y^2 + z^2 ) ^ 0.5 * 100 else return ( x^2 + y^2 + z^2 ) ^ 0.5 * 1.61 * 100 end else return false end end كذا راح يتكرر الصوت كثيييير,, مابي احط الكود مابي اتحمل ذنوب الاغاني,, يتكرر اجل ؟ اقول رح جربه + ما تبي تحط الكود !! بالله حطه ورنا كيف مسوي أنت + تقدر تقلي ليه انا حاط الوظايف ذي ؟ isSoundPaused setSoundPaused ======================== أصصلاً عآدي Link to comment
#Al-Ha[J]aRii Posted April 13, 2013 Share Posted April 13, 2013 -- Client Side ! GUIEditor = { button = {}, staticimage = {}, window = {}, } GUIEditor.window[1] = guiCreateWindow(197, 141, 433, 368, "~ > | التعزيز الصصوتي | < ~", false) guiWindowSetSizable(GUIEditor.window[1], false) guiSetAlpha(GUIEditor.window[1], 0.95) guiSetVisible(GUIEditor.window[1], false) GUIEditor.staticimage[1] = guiCreateStaticImage(9, 21, 415, 338, "1.png", false, GUIEditor.window[1]) GUIEditor.button[1] = guiCreateButton(19, 224, 146, 52, "تششغيل التعزيز الصصوتي !", false, GUIEditor.staticimage[1]) guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FF14F608") GUIEditor.button[2] = guiCreateButton(238, 223, 146, 52, "إيققآفف التعزيز الصصوتي !", false, GUIEditor.staticimage[1]) guiSetProperty(GUIEditor.button[2], "NormalTextColour", "FFFF0000") GUIEditor.button[3] = guiCreateButton(148, 291, 97, 37, "إغلآقق النآفذةة !", false, GUIEditor.staticimage[1]) guiSetProperty(GUIEditor.button[3], "NormalTextColour", "FF15AFE8") bindKey ( "F9" , "down" , function( ) if ( guiGetVisible ( GUIEditor.window[1] ) == true ) then guiSetVisible ( GUIEditor.window[1] ,false ) showCursor (false ) guiSetInputEnabled(false) else guiSetVisible ( GUIEditor.window[1] ,true ) showCursor (true) end end ) musics = playSound ( "t3zez1.mp3", true ) setSoundVolume ( musics, 1 ) setSoundPaused ( musics, true ) addEventHandler ( "onClientGUIClick", root, function ( ) if ( source == GUIEditor.button[1] ) then if not ( isPedInVehicle ( localPlayer ) ) then return outputChatBox("#ff0000يجب أن تكون لديك سسيآرةة , # !",0,255,0,true) end; if ( isTimer ( SpeedTimer ) ) then return outputChatBox("#ff0000لقد قمت بتشغيل التعزيز الصوتي من قبل , # !",0,255,0,true) end SpeedTimer = setTimer ( function ( ) if ( isPedInVehicle ( localPlayer ) ) then local Vehicle = getPedOccupiedVehicle ( localPlayer ); local Speed = getVehicleSpeed ( Vehicle, "kmh" ); if ( Speed >= 40 ) then if ( isSoundPaused ( musics ) ) then setSoundPaused ( musics, false ) end else if ( not isSoundPaused ( musics ) ) then setSoundPaused ( musics, true ) end end else if ( not isSoundPaused ( musics ) ) then setSoundPaused ( musics, true ) end if ( isTimer ( SpeedTimer ) ) then killTimer ( SpeedTimer ) end end end, 2000, 0 ); elseif ( source == GUIEditor.button[2] ) then if ( isTimer ( SpeedTimer ) ) then killTimer ( SpeedTimer ) if ( not isSoundPaused ( musics ) ) then setSoundPaused ( musics, true ) end else outputChatBox ( "* أنت لم تقم بتشغيل التعزيز الصوتي من قبل ، حتى تقوم بإلغائه !", 255, 0, 0, true ) end elseif ( source == GUIEditor.button[3] ) then guiSetVisible(GUIEditor.window[1], false) showCursor(false) end end ) function getVehicleSpeed ( v, i ) if i == nil then i = 0 end if isElement ( v ) then local x,y,z = getElementVelocity ( v ) if ( i == "mph" or i == 1 or i == "1" ) then return ( x^2 + y^2 + z^2 ) ^ 0.5 * 100 else return ( x^2 + y^2 + z^2 ) ^ 0.5 * 1.61 * 100 end else return false end end كذا راح يتكرر الصوت كثيييير,, مابي احط الكود مابي اتحمل ذنوب الاغاني,, يتكرر اجل ؟ اقول رح جربه + ما تبي تحط الكود !! بالله حطه ورنا كيف مسوي أنت + تقدر تقلي ليه انا حاط الوظايف ذي ؟ isSoundPaused setSoundPaused ======================== أصصلاً عآدي Link to comment
فاّرس Posted April 13, 2013 Share Posted April 13, 2013 ^ مع إني جربته ع صوت قصير صار يتكرر,, حطيت صوت ططويل صار ما يتكرر , بالنسبه لي ما سويت شيء بس حطيت musics = playSound ( "t3zez1.mp3", false ) بعد السطر 54 Link to comment
===|OSAMA|=== Posted April 13, 2013 Share Posted April 13, 2013 ^ مع إني جربته ع صوت قصير صار يتكرر,,حطيت صوت ططويل صار ما يتكرر , بالنسبه لي ما سويت شيء بس حطيت musics = playSound ( "t3zez1.mp3", false ) بعد السطر 54 ×__× بوظيفة تشغيل الصوت ، ذا معناهـ ، لما يخلص الصوت يعيده من جديد مهو مثل منت فاهمه ذذ true الأرقمنت لما يخلص الصوت مارح ينعاد false يعني لو تحطه !! + أنت لما حطيت صوت قصير .. هو ما كررهـ .. لكن لما خلص الصوت عادهـ ذذ ، عشان كذا فكرته يكرر # Link to comment
S4MuEL Posted April 13, 2013 Author Share Posted April 13, 2013 ثآنكسس أسسآمةة , يعطيك العآفيةة = ] ، Link to comment
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now