Faraon, Posted August 2, 2016 Share Posted August 2, 2016 الان يا شباب انا سويت لوحة وقمت بالبرمجة لها .. وهذا اول طلب اطلبو من المنتدي وياريت الرد سريع المهم انا لما شفرت المود حقي نسيت اوضع شئ مهم المود بالزر ولما اشفرة الناس تبي تغير الزر ابي الكود Key.lua وشكرا Link to comment
Vunili Posted August 2, 2016 Share Posted August 2, 2016 function Open ( ) bindKey("F1","down", Open) end Link to comment
N3xT Posted August 2, 2016 Share Posted August 2, 2016 function Open ( ) bindKey("F1","down", Open) end كودك غلط, لازم تسوي تريقر للكلنت عشان تظهر اللوحة صاحب الموضوع جرب كذا #Server > local key = "F1" -- الزر bindKey(key,"down", function () triggerClientEvent(source,"show:gui",source) end ) #Client > addEvent ( "show:gui", true ) addEventHandler ( 'show:gui', root, function () guiSetVisible(window, true) showCursor(true) end ) عدل إسم لوحتك Link to comment
Faraon, Posted August 2, 2016 Author Share Posted August 2, 2016 function Open ( ) bindKey("F1","down", Open) end كودك غلط, لازم تسوي تريقر للكلنت عشان تظهر اللوحة صاحب الموضوع جرب كذا #Server > local key = "F1" -- الزر bindKey(key,"down", function () triggerClientEvent(source,"show:gui",source) end ) #Client > addEvent ( "show:gui", true ) addEventHandler ( 'show:gui', root, function () guiSetVisible(window, true) showCursor(true) end ) عدل إسم لوحتك اللوح حقي Dx .. Link to comment
Faraon, Posted August 2, 2016 Author Share Posted August 2, 2016 function Open ( ) bindKey("F1","down", Open) end لديك سكايب؟ Link to comment
N3xT Posted August 2, 2016 Share Posted August 2, 2016 طيب وإذا دي أكس ما تعرف تعدلها ؟ Link to comment
Faraon, Posted August 2, 2016 Author Share Posted August 2, 2016 طيب وإذا دي أكس ما تعرف تعدلها ؟ اسمع .. اطرح لك الاكواد الي وضعتها بالفتح function key() if removeEventHandler("onClientRender", root, dx) then removeEventHandler("onClientRender", root, dx) showCursor(false) guiSetInputEnabled(false) guiSetVisible(button,false) else addEventHandler("onClientRender", root, dx) showCursor(true) guiSetInputEnabled(true) guiSetVisible(button,true) end end function dx ( ) bindKey("F5","down", dx) end addEventHandler("onClientGUIClick",button, function() triggerServerEvent("Kill",localPlayer) end ) Link to comment
Faraon, Posted August 2, 2016 Author Share Posted August 2, 2016 طيب وإذا دي أكس ما تعرف تعدلها ؟ مرحبآآ Link to comment
Faraon, Posted August 2, 2016 Author Share Posted August 2, 2016 شباب ردووووووو سرييييييييييييييييييييييييييييييييييييييييع Link to comment
N3xT Posted August 2, 2016 Share Posted August 2, 2016 #Server > local key = "F1" -- الزر bindKey(key,"down", function () triggerClientEvent(source,"show:gui",source) end ) #Client > addEvent ( "show:gui", true ) addEventHandler ( 'show:gui', root, function () if show == false then addEventHandler("onClientRender", root, dx) showCursor(true) show = true else removeEventHandler("onClientRender", root, dx) showCursor(false) show = false end end ) 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