' A F . Posted January 14, 2015 Share Posted January 14, 2015 السسلامم عليكمم .. كيف حالكمم .. انا اليوم ابي اطلب فنكشنات .. مهمةة انا بسويها مألكممء بـ الطويلةة . <3 مثال انا بسوي ماب طيب .. حلو .. طبعـا أبيه يكتب بـ الشات انا احدد الكلمة ! يعطيه موتر و يعطيه فريز وبعد 5 ثواني ينفك الفريز ! واذا طاح بـ البحر يموت ع طول واذا نزل من السياره يموت .. واخر واحد يفوز ابيه يعطيه فلوس بين 1000 , 5000 و م يقدر يفتح المود الي انا احدده .. <3 والسسلام عليكمم .. Link to comment
EH10 Posted January 15, 2015 Share Posted January 15, 2015 outputChatBox setTimer Event : 'onVehicleStartExit' killPed Event : 'onPlayerChat' table math.random table.insert createVehicle warpPedIntoVehicle setElementFrozen true , false setTimer isElementInWater killPed destroyElement givePlayerMoney setElementPosition Link to comment
jafar Posted January 15, 2015 Share Posted January 15, 2015 طبعـا أبيه يكتب بـ الشات انا احدد الكلمة ! يعطيه موتر و يعطيه فريز وبعد 5 ثواني ينفك الفريز ! "onPlayerChat" table createVehicle warpPedIntoVehicle setElementFrozen -- For Vehicle setTimer واذا طاح بـ البحر يموت ع طول واذا نزل من السياره يموت .. "onVehicleStartExit" isElementInWater killPed واخر واحد يفوز ابيه يعطيه فلوس بين 1000 , 5000 givePlayerMoney math.random -- math.random ( 1000, 5000 ) Link to comment
' A F . Posted January 17, 2015 Author Share Posted January 17, 2015 مششكورين لاكنن انهيت فكرةة المود والان تعلمت ع الدي اكس حلو لاكن ابيه لما يظغط على الزر الي فـ الدي اكس تتغير شخصيته ممكن تضبطولي هاذا الكود مع شرح له ذذ الكود function drawStuff() dxDrawRectangle(210, 90, 440, 268, tocolor(2, 2, 252, 111)) dxDrawText("|| Time Panel || By Pro Gamer", 251, 117, 591, 147, tocolor(255, 3, 3, 255), 2.00, "default", "left", "top", false, false, true, false, false) dxDrawRectangle(220, 170, 154, 35, tocolor(205, 199, 50, 111)) dxDrawRectangle(477, 170, 154, 35, tocolor(205, 199, 50, 111)) dxDrawRectangle(477, 233, 154, 35, tocolor(205, 199, 50, 111)) dxDrawRectangle(220, 231, 154, 35, tocolor(205, 199, 50, 111)) dxDrawText("|| الوقت 1 ||", 220, 173, 396, 205, tocolor(254, 0, 0, 255), 2.00, "default", "left", "top", false, false, true, false, false) dxDrawText("|| الوقت 2 ||", 484, 173, 660, 205, tocolor(254, 0, 0, 255), 2.00, "default", "left", "top", false, false, true, false, false) dxDrawText("|| الوقت 3 ||", 484, 233, 660, 265, tocolor(254, 0, 0, 255), 2.00, "default", "left", "top", false, false, true,false, false) end GUIEditor = { button = {}, window = {} } addEventHandler("onClientResourceStart", resourceRoot, function() removeEventHandler("onClientRender",root,drawStuff) GUIEditor.button[1] = guiCreateButton(220, 170, 154, 35,"لا اله الا الله", false) guiSetAlpha(GUIEditor.button[1], 0.02) GUIEditor.button[2] = guiCreateButton(484, 173, 660, 205,"لا اله الا الله", false) guiSetAlpha(GUIEditor.button[2], 0.02) GUIEditor.button[3] = guiCreateButton(13, 91, 140, 32, "لا اله الا الله", false) guiSetAlpha(GUIEditor.button[3], 0.02) GUIEditor.button[4] = guiCreateButton(233, 660, 265, "لا اله الا الله", false) guiSetAlpha(GUIEditor.button[4], 0.02) end ) addEventHandler("onClientGUIClick",root, function () if source == GUIEditor.button[1] then setElementModel(source, 230) elseif source == GUIEditor.button[2] then setTime(8,0) elseif source == GUIEditor.button[3] then setTime(10,0) end end ) function Open() addEventHandler("onClientRender",root,drawStuff) showCursor( true ) guiSetVisible(GUIEditor.button[1],true) guiSetVisible(GUIEditor.button[2],true) guiSetVisible(GUIEditor.button[3],true) end addCommandHandler("On",Open) Link to comment
ALw7sH Posted January 18, 2015 Share Posted January 18, 2015 مخفي ويكون بنفس احداثيات زر الدي اكس وتخلي لو ضغط عليه يصيرا لي تبي gui أسهل طريقة أنك تسوي زر Link to comment
' A F . Posted January 18, 2015 Author Share Posted January 18, 2015 طيب ابي الكود الي يخلي اللوحة الدي اكس تفتح في F3 ممكن ؟ Link to comment
# 7 m o o d Posted January 18, 2015 Share Posted January 18, 2015 bindKey("الزر الي تبيه", "down", function () guiSetVisible(اسم اللوحه, not guiGetVisible (اسم آللوحه)) showCursor(guiGetVisible(اسم اللوحه)) end ) Link to comment
jafar Posted January 18, 2015 Share Posted January 18, 2015 تقدر تسوي الضغط على DX بدون أزرار بواسطة guiGetScreenSize getCursorPosition بالنسبة لفتح النافذة تقدر تستخدم var -- true or false addEventHandler - removeEventHandler bindKey Link to comment
' A F . Posted January 18, 2015 Author Share Posted January 18, 2015 طيب وش اسهل هاذي dxDrawRectangle ولا هاذي dxCreateWindow Link to comment
#Mr.alkmasha Posted January 19, 2015 Share Posted January 19, 2015 ذي اسهل . dxDrawRectangle 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