Doffy Posted February 24, 2017 Share Posted February 24, 2017 كيف اخلي مثلا لو انا ابي اشفر مود واخلي ملف حق الزر الي يفتح اللوحة Link to comment
AHMED MOSTAFA Posted February 24, 2017 Share Posted February 24, 2017 59 minutes ago, KinG_Himoo12 said: كيف اخلي مثلا لو انا ابي اشفر مود واخلي ملف حق الزر الي يفتح اللوحة استعمل ملفين بنفس النوع يعني مثلاً GUI.lua Bind.lua خلي كود الزر في لوحة وحده Bind.lua وخلي التصميم في لوحة وحده GUI.lua وشفر اللي بتحط فيه اللوحة بدون ما تشفر الآخر بس وقت تحط كود فتح اللوحة في الملف الآخر اكتب نفس اسم اللوحة مثال الملف الاول وليكن مثلاً GUIText.lua وهذا اللي تشفره local screenW, screenH = guiGetScreenSize() DeveloperAhmed = guiCreateWindow(0, (screenH - 500) / 2, screenW, 500, "[ Gta 4u ]", false) guiWindowSetSizable(DeveloperAhmed, false) guiSetVisible(DeveloperAhmed, false) اما الثاني وليكن مثلاً BindKey.lua bindKey("F1", "down", function () Vwindow = guiGetVisible ( DeveloperAhmed ) -- نفس اسم اللوحة if Vwindow == true then guiSetVisible ( DeveloperAhmed, false ) -- نفس اسم اللوحة showCursor ( false ) elseif Vwindow == false then guiSetVisible ( DeveloperAhmed, true ) -- نفس اسم اللوحة showCursor ( true ) 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