saitama Posted July 14, 2016 Share Posted July 14, 2016 شباب وش سبب عدم حذف الخريطة function s ( player ) unbindKey ( player, "F11", "down", s ) end Link to comment
فاّرس Posted July 14, 2016 Share Posted July 14, 2016 استخدم "onClientKey" cancelEvent Link to comment
saitama Posted July 14, 2016 Author Share Posted July 14, 2016 function s ( player ) unbindKey ( player, "F11", "down", s ) cancelEvent() addEventHandler("onClientKey", root, s) end كذا ؟ Link to comment
فاّرس Posted July 14, 2016 Share Posted July 14, 2016 addEventHandler ( 'onClientKey', root, function ( b ) if b == 'F11' then cancelEvent () end end) Link to comment
saitama Posted July 14, 2016 Author Share Posted July 14, 2016 + ممكن تشرح الكود وكيف سويته ؟ شكرا بجرب Link to comment
فاّرس Posted July 14, 2016 Share Posted July 14, 2016 الكود كلينت تأكد , وسوي ريستارت للسكربت وجرب؟ Link to comment
saitama Posted July 14, 2016 Author Share Posted July 14, 2016 اشتغل مادريت انه كلنت عالعموم مشكور يا شاطح واسف اني تعبتك معي Link to comment
فاّرس Posted July 14, 2016 Share Posted July 14, 2016 العفو حياك الله . + ممكن تشرح الكود وكيف سويته ؟ شكرا بجرب Parameters : البارامترز هو اللي يكون داخل قوسين الفنكشن غالباً, فيه موضوع بقسم الشروحات راجعه يفيدك string button, bool pressOrRelease -- فيه اثنين بارامترز اللي نبيه هو الاول اللي هو الزر اللي انضغط : button: This refers the button pressed. see Key names for list of keys string ادخل على صفحة الازرار اللي تقدر تستخدمها مع الحدث : https://wiki.multitheftauto.com/wiki/Key_names addEventHandler ( 'onClientKey', root, function ( b ) -- حدث اذا ضغطت على مفتاح من الكيبورد if b == 'F11' then -- F11 نتحقق ان الزر هو cancelEvent () -- نكنسل الايفنت يعني ما راح يشتغل 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