-
Posts
1,486 -
Joined
-
Last visited
Everything posted by shwaeki
-
منور حبيبي ابو وليد
-
منور Khalid.Mohammed ان شائ الله بعد كم يوم بنزل اصدار جديد
-
منور Ge[N]eraL,10
-
"onClientGUIClick" triggerServerEvent spawnPlayer spawnPlayer giveWeapon
-
منورين # ZĀ!ـحF ๛ AL-MR3B
-
viewtopic.php?f=161&t=78586&p=720038#p720038
-
السلام عليكم و رجمة الله و بركاتة المود عبارة عن اي واحد يدخل يحفظ سيريلة الوحة تفتح من اف 8 بس يا الكونسل تكتب open تقدر تغير الكلمة من اف 8 لما تضغط على القراند لست يجي السيريل في الاديت اي مشكلة قولولي رابط التحميل https://community.multitheftauto.com/in ... ls&id=9816 صور تم التحديث # 2 الاضافات 1- تم اضافة اعضاء باند 2- تم اضافة زر مسح اللست 3- تم اضافة زر انذار و زر ازالة الانذار ذاا تعطية انذار يصير لونة اصفر و لما تفك يرجع اخضر 4-HistorySerial تم اضافة زر في جميع عمليات التبنيد و مسح الست في المود و يفتح يا سيرلات محددة تغيرها من ملف 5- تم ازالة الون الاحمر و الخضر اذا كان الاعب موجود او لا يجب اضافة المود يا قروب ادمن عشين يعطي باند هيك من دون انذار هيك مع انذار https://community.multitheftauto.com/ind ... ls&id=9820
-
التحديث#1# Panel Control Account ||=|| مود التحكم بالحساب #
shwaeki replied to #=|>[A]sMr,\~>'s topic in المساهمات
بداية موفقة بس اعتقد لازم تضيفة يا جروب ادمن صح ؟؟ -
بتوفيق بس لو تسوي شي جديد لانة في كتير زية
-
لسا في كمان يا تحت كلهم 19 وحدة
-
انا عدتلك على الكود يلي اعطاك اياه زاحف local OrginalImage = "imgorg.png" local onEnter = "imgenter.png" local onClick = "imgclick.png" addEventHandler ( "onClientResourceStart", resourceRoot, function ( ) for _,guiElements in ipairs ( getElementsByType ( "gui-button", resourceRoot ) ) do local _x, _y = guiGetPosition ( guiElements, false ) local _w, _h = guiGetSize ( guiElements, false ) replaceimage = guiCreateStaticImage( _x, _y, _w, _h, OrginalImage, false ,GUIEditor.window[1]) if ( replaceimage ) then guiSetAlpha ( guiElements, 0 ) addEventHandler( "onClientMouseEnter", replaceimage, function ( ) guiStaticImageLoadImage ( replaceimage, onEnter ) end, false ) addEventHandler( "onClientMouseLeave", replaceimage, function ( ) guiStaticImageLoadImage ( replaceimage, OrginalImage ) end, false ) addEventHandler( "onClientGUIClick", replaceimage, function ( ) guiStaticImageLoadImage ( replaceimage, onClick ) end, false ) end end end ) شوف هاي كانت هيك replaceimage = guiCreateStaticImage( _x, _y, _w, _h, OrginalImage, false) سيوتها هيك replaceimage = guiCreateStaticImage( _x, _y, _w, _h, OrginalImage, false ,GUIEditor.window[1])
-
تفضل شغال %100 GUIEditor = { gridlist = {}, window = {}, button = {}, label = {} } addEventHandler("onClientResourceStart", resourceRoot, function() GUIEditor.window[1] = guiCreateWindow(389, 223, 569, 467, "T Panel", false) guiWindowSetSizable(GUIEditor.window[1], false) guiSetAlpha(GUIEditor.window[1], 1.00) guiSetProperty(GUIEditor.window[1], "CaptionColour", "FF1C78F2") GUIEditor.button[1] = guiCreateButton(197, 395, 188, 46, "T Now", false, GUIEditor.window[1]) guiSetFont(GUIEditor.button[1], "default-bold-small") guiSetVisible(GUIEditor.window[1],false) end ) local OrginalImage = "imgorg.png" local onEnter = "imgenter.png" local onClick = "imgclick.png" addEventHandler ( "onClientResourceStart", resourceRoot, function ( ) for _,guiElements in ipairs ( getElementsByType ( "gui-button", resourceRoot ) ) do local _x, _y = guiGetPosition ( guiElements, false ) local _w, _h = guiGetSize ( guiElements, false ) replaceimage = guiCreateStaticImage( _x, _y, _w, _h, OrginalImage, false ,GUIEditor.window[1]) if ( replaceimage ) then guiSetAlpha ( guiElements, 0 ) addEventHandler( "onClientMouseEnter", replaceimage, function ( ) guiStaticImageLoadImage ( replaceimage, onEnter ) end, false ) addEventHandler( "onClientMouseLeave", replaceimage, function ( ) guiStaticImageLoadImage ( replaceimage, OrginalImage ) end, false ) addEventHandler( "onClientGUIClick", replaceimage, function ( ) guiStaticImageLoadImage ( replaceimage, onClick ) end, false ) end end end ) bindKey("F5","down",function() if guiGetVisible(GUIEditor.window[1]) == true then guiSetVisible(GUIEditor.window[1],false) showCursor(false) else guiSetVisible(GUIEditor.window[1],true) showCursor(true) end end)
-
جرب local OrginalImage = "" --- الصورة الاصلية # local onEnter = "" --- عند دخول المؤشر # local onClick = "" --- عند الضغط على الصورة # addEventHandler ( "onClientResourceStart", resourceRoot, function ( ) for _,guiElements in ipairs ( getElementsByType ( "gui-button", resourceRoot ) ) do local _x, _y = guiGetPosition ( guiElements, false ) local _w, _h = guiGetSize ( guiElements, false ) replaceimage = guiCreateStaticImage( _x, _y, _w, _h, OrginalImage, false ,GUIEditor.window[1] ) if ( replaceimage ) then guiSetAlpha ( guiElements, 0 ) addEventHandler( "onClientMouseEnter", replaceimage, function ( ) guiStaticImageLoadImage ( replaceimage, onEnter ) end, false ) addEventHandler( "onClientMouseLeave", replaceimage, function ( ) guiStaticImageLoadImage ( replaceimage, OrginalImage ) end, false ) addEventHandler( "onClientGUIClick", replaceimage, function ( ) guiStaticImageLoadImage ( replaceimage, onClick ) end, false ) end end end )
-
المود هاد يا كل الاعبين بس بالاخص يلي مو منتهي تحميلهم ف اذا بتسوة كلنت ببطلو يقدر ياخذو سيارة
-
createPed --- صنع بيد setPedAnimation --- وظع حركة للبيد هاد المود كلام فوق البيد https://community.multitheftauto.com/in ... ls&id=7613
-
بعد ما تشتري هو بيعطيك اسم العصابة و انتا بتسويها في مود القروبات
-
يب شفتها انا كنت افكرها من السبون
-
تروح الفيد كاميرا (Play) اها انا فكري انة فيها لانو لما ارسبن في Note: setCameraTarget must be used to focus on the player. Also, all players have their camera initially faded out after connect. To ensure that the camera is faded in, please do a fadeCamera after.