Jump to content

acount deleted

Members
  • Posts

    290
  • Joined

  • Last visited

Everything posted by acount deleted

  1. R = guiCreateButton(709,244,79,24,"", false) guiSetAlpha(R,0) addEventHandler("onClientMouseEnter", root, function() guiSetProperty(R,"NormalTextColour", "FF0000") end ) addEventHandler("onClientMouseLeave", root, function() guiSetProperty(R,"NormalTextColour", "FFFFFF") end )
  2. مو مهم التشفير هو صاحب الاستضافة يبي ياخذهم و يبيعهم من غير ما يلمسهم
  3. انت تبي تغير لون ازر لما تجي فوقه الماوس؟
  4. يب اتوقعت تكون المشكلة ذي بالضبط
  5. لا الجدول الي في الكود فيه 9 قيمات
  6. شف احنا راح نبدا من القيمة الاولى و بعد نطبق عليها الكود
  7. num = المفتاح الي اعتمده بالكود 1 = اول قيمة بالجدول
  8. شوف الكود فيه ادت و تكتب فيه و لما تضغط عالزر ينفك
  9. كود السيرفر هو نفسه كود الكلينت
  10. نسخ مع لصق من الويكي https://wiki.multitheftauto.com/wiki/SetVehicleWheelStates حتى الديبق عجز عن التعليق هههههههههههههههههه الله يعطيك العافية يابعد راسي , تصدق جلست احاول فيه ساعه , ابرمج المود, وضبط فك معي الكفر الايسر من السيارة , بس باقي اضيف اوامر الاصلاح + guiGetText يسوي على حسب الرقم اللي يحطه الاعب , + جاب لي حالة الكفرات كلها , خخخخخخخخ يعني لما تخلص راح تاخذه لنفسك و تنسى صاحب الموضوع
  11. نسخ مع لصق من الويكي https://wiki.multitheftauto.com/wiki/SetVehicleWheelStates حتى الديبق عجز عن التعليق
  12. انا صححت اللوحة اما بالنسبة للمود يبيله شغل اكثر
  13. GUIEditor = { button = {}, window = {}, edit = {}, label = {} } GUIEditor.window[1] = guiCreateWindow(272, 110, 314, 387, "فـكَ الكفر", false) guiWindowSetSizable(GUIEditor.window[1], false) guiSetAlpha(GUIEditor.window[1], 0.99) GUIEditor.label[1] = guiCreateLabel(194, 32, 106, 15, "[0] Normal | طبيعي", false, GUIEditor.window[1]) guiLabelSetColor(GUIEditor.label[1], 151, 233, 21) GUIEditor.label[2] = guiCreateLabel(198, 57, 106, 15, "[1] Flat | مـنسسم", false, GUIEditor.window[1]) guiLabelSetColor(GUIEditor.label[2], 30, 75, 223) GUIEditor.label[3] = guiCreateLabel(15, 32, 133, 19, "[2] Fallen Off | مـفكوك", false, GUIEditor.window[1]) guiLabelSetColor(GUIEditor.label[3], 168, 6, 6) GUIEditor.label[4] = guiCreateLabel(15, 57, 158, 19, "[3] Collisionless | نـآزل", false, GUIEditor.window[1]) guiLabelSetColor(GUIEditor.label[4], 158, 96, 15) GUIEditor.label[5] = guiCreateLabel(222, 121, 68, 34, "Front Right \n قدام يمين ", false, GUIEditor.window[1]) guiLabelSetColor(GUIEditor.label[5], 41, 131, 128) GUIEditor.edit[1] = guiCreateEdit(219, 161, 81, 25, "", false, GUIEditor.window[1]) GUIEditor.label[6] = guiCreateLabel(20, 121, 68, 34, "Front Left\n قدام يسار ", false, GUIEditor.window[1]) guiLabelSetColor(GUIEditor.label[6], 65, 42, 129) GUIEditor.edit[2] = guiCreateEdit(15, 161, 81, 25, "", false, GUIEditor.window[1]) GUIEditor.label[7] = guiCreateLabel(21, 217, 75, 30, "Rear Left\nورا يسار ", false, GUIEditor.window[1]) guiLabelSetColor(GUIEditor.label[7], 9, 161, 106) GUIEditor.label[8] = guiCreateLabel(229, 217, 75, 30, "Rear Right\nورا يمين ", false, GUIEditor.window[1]) guiLabelSetColor(GUIEditor.label[8], 74, 135, 34) GUIEditor.edit[3] = guiCreateEdit(15, 257, 81, 23, "", false, GUIEditor.window[1]) GUIEditor.edit[4] = guiCreateEdit(219, 254, 84, 26, "", false, GUIEditor.window[1]) GUIEditor.button[1] = guiCreateButton(98, 332, 121, 39, "فك الكفر", false, GUIEditor.window[1]) guiSetFont(GUIEditor.button[1], "default-bold-small") guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFAAAAAA") GUIEditor.label[9] = guiCreateLabel(11, 302, 116, 20, "Created By : mnGr7", false, GUIEditor.window[1]) guiLabelSetColor(GUIEditor.label[9], 151, 233, 21) function OpenWin() if guiGetVisible ( GUIEditor.window[1] ) then guiSetVisible ( GUIEditor.window[1], false ) showCursor(false) guiSetInputEnabled(false) else guiSetVisible ( GUIEditor.window[1], true ) showCursor(true) guiSetInputEnabled(true) end end bindKey("F7", "down", OpenWin) addEventHandler ("onClientGUIClick", getRootElement(), function () if source == GUIEditor.button[1] then function scriptWheelStates (command, newFLeft, newRLeft, newFRight, newRRight ) local theVehicle = getPedOccupiedVehicle ( localPlayer ) if ( theVehicle ) then if ( newFLeft ) then if not setVehicleWheelStates ( theVehicle, newFLeft, newRLeft, newFRight, newRRight ) then outputChatBox ( "Bad arguments." ) end end outputChatBox("تـم فك الـكفر") end end end end )
  14. GUIEditor = { button = {}, window = {}, edit = {}, label = {} } addEventHandler("onClientResourceStart", resourceRoot, function() GUIEditor.window[1] = guiCreateWindow(272, 110, 314, 387, "فـكَ الكفر", false) guiWindowSetSizable(GUIEditor.window[1], false) guiSetAlpha(GUIEditor.window[1], 0.99) GUIEditor.label[1] = guiCreateLabel(194, 32, 106, 15, "[0] Normal | طبيعي", false, GUIEditor.window[1]) guiLabelSetColor(GUIEditor.label[1], 151, 233, 21) GUIEditor.label[2] = guiCreateLabel(198, 57, 106, 15, "[1] Flat | مـنسسم", false, GUIEditor.window[1]) guiLabelSetColor(GUIEditor.label[2], 30, 75, 223) GUIEditor.label[3] = guiCreateLabel(15, 32, 133, 19, "[2] Fallen Off | مـفكوك", false, GUIEditor.window[1]) guiLabelSetColor(GUIEditor.label[3], 168, 6, 6) GUIEditor.label[4] = guiCreateLabel(15, 57, 158, 19, "[3] Collisionless | نـآزل", false, GUIEditor.window[1]) guiLabelSetColor(GUIEditor.label[4], 158, 96, 15) GUIEditor.label[5] = guiCreateLabel(222, 121, 68, 34, "Front Right \n قدام يمين ", false, GUIEditor.window[1]) guiLabelSetColor(GUIEditor.label[5], 41, 131, 128) GUIEditor.edit[1] = guiCreateEdit(219, 161, 81, 25, "", false, GUIEditor.window[1]) GUIEditor.label[6] = guiCreateLabel(20, 121, 68, 34, "Front Left\n قدام يسار ", false, GUIEditor.window[1]) guiLabelSetColor(GUIEditor.label[6], 65, 42, 129) GUIEditor.edit[2] = guiCreateEdit(15, 161, 81, 25, "", false, GUIEditor.window[1]) GUIEditor.label[7] = guiCreateLabel(21, 217, 75, 30, "Rear Left\nورا يسار ", false, GUIEditor.window[1]) guiLabelSetColor(GUIEditor.label[7], 9, 161, 106) GUIEditor.label[8] = guiCreateLabel(229, 217, 75, 30, "Rear Right\nورا يمين ", false, GUIEditor.window[1]) guiLabelSetColor(GUIEditor.label[8], 74, 135, 34) GUIEditor.edit[3] = guiCreateEdit(15, 257, 81, 23, "", false, GUIEditor.window[1]) GUIEditor.edit[4] = guiCreateEdit(219, 254, 84, 26, "", false, GUIEditor.window[1]) GUIEditor.button[1] = guiCreateButton(98, 332, 121, 39, "فك الكفر", false, GUIEditor.window[1]) guiSetFont(GUIEditor.button[1], "default-bold-small") guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFAAAAAA") GUIEditor.label[9] = guiCreateLabel(11, 302, 116, 20, "Created By : mnGr7", false, GUIEditor.window[1]) guiLabelSetColor(GUIEditor.label[9], 151, 233, 21) end ) addEventHandler ("onClientGUIClick", getRootElement(), function () if source == GUIEditor.button[1] then function scriptWheelStates (command, newFLeft, newRLeft, newFRight, newRRight ) local theVehicle = getPedOccupiedVehicle ( localPlayer ) if ( theVehicle ) then if ( newFLeft ) then if not setVehicleWheelStates ( theVehicle, newFLeft, newRLeft, newFRight, newRRight ) then outputChatBox ( "Bad arguments." ) end end outputChatBox("تـم فك الـكفر") end end end end )
  15. function wld() if source == male then outputChatBox("you are male") else outputChatBox("you are female") end end
  16. بألــوفيق ي الغأألي و ان شاء الله يكون من احسن السيرفرات و الكل يلعبه
  17. حتى انا مسجل هناك منتدى فلة ياخي شريت كمبيوتري من هناك
  18. و الله حمستني بسرعة حطهم عن قريب جدا
  19. وااو و الله جميل جدا بالتوفيق و ان شاء الله ما تبخل و تكمل و تصير ملك الفريروم ض1
×
×
  • Create New...