Jump to content

خآرج السسيآرةة ودآخلهآ , #


Recommended Posts

السلآمم عليكمم ششبآب ,

 

أنا مععي لوحةة حققت تعزيز صصوتي

 

بغيت إذآ كآن الاعب خآرج السسيآرةة ويفتح اللوحةة ويظغط ع زر تشغيل الصصوت , م يشتغل لهه ويقلهه ليسس لديك سسيآرةة , #@

 

وإذآ كآن بالسسيآرةة يششتغل = \

 

م عرفت وش الفنكشنآت يلي إسستخدمهآ ، = \

 

ممكن تسسوون لي الكود ؟ ، أو تعطوني الففنكششنآت أحآول ؟ = \

Link to comment

ممآ اشتغل مععي أو م عرفت كيفف أظبطهه , + أول م اشغل المود يجي الكلآمم بالششآت , !

هذآ الكود !

  
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[3] ) then 
guiSetVisible(GUIEditor.window[1], false) 
showCursor(false) 
  
end 
  
end 
  
) 
  
    addEventHandler("onClientGUIClick",GUIEditor.button[1], 
    function ( ) 
    if isElement(sound) then destroyElement(sound) sound = nil end 
    sound = playSound("t3zez1.mp3",true) 
    end,false) 
      
      
      
    addEventHandler("onClientGUIClick",GUIEditor.button[2], 
    function () 
    if isElement(sound) then 
    destroyElement(sound) 
       sound = nil 
         end 
    end,false) 
  
    if not isPedInVehicle(localPlayer) then return outputChatBox("يجب أن تكون لديك سسيآرةة , # !") end; 
  
  
  

Link to comment
  
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("يجب أن تكون لديك سسيآرةة , # !") end; 
    if isElement(sound) then destroyElement(sound) sound = nil end 
    sound = playSound("t3zez1.mp3",true) 
    elseif source ==  GUIEditor.button[2] then 
    if isElement(sound) then 
    destroyElement(sound) 
       sound = nil 
elseif ( source == GUIEditor.button[3] ) then 
guiSetVisible(GUIEditor.window[1], false) 
showCursor(false) 
         end 
    end 
) 

Link to comment
  
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("يجب أن تكون لديك سسيآرةة , # !") end; 
    if isElement(sound) then destroyElement(sound) sound = nil end 
    sound = playSound("t3zez1.mp3",true) 
    elseif source ==  GUIEditor.button[2] then 
    if isElement(sound) then 
    destroyElement(sound) 
       sound = nil 
end 
elseif ( source == GUIEditor.button[3] ) then 
guiSetVisible(GUIEditor.window[1], false) 
showCursor(false) 
         end 
    end 
)  
  
  

Link to comment

  
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("يجب أن تكون لديك سسيآرةة , # !",0,255,0,true) end; 
    if isElement(sound) then destroyElement(sound) sound = nil end 
    sound = playSound("t3zez1.mp3",true) 
    elseif source ==  GUIEditor.button[2] then 
    if isElement(sound) then 
    destroyElement(sound) 
       sound = nil 
end 
elseif ( source == GUIEditor.button[3] ) then 
guiSetVisible(GUIEditor.window[1], false) 
showCursor(false) 
         end 
    end 
)  
  
  
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...