Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 17/03/18 in all areas

  1. #| اليوم جايب لكم مود حماية الاماكن من داخل السيرفر |# ~~( مميزات المود )~~ ~( يمكنك عمل جميع انواع الحمايات من داخل السيرفر [ حماية من الاسلحة فقط , حماية من السيارات فقط , حماية من السيارات و الاسلحة ] وبس )~ ~( يحفظ على قاعدة بيانات لو طفيت السيرفر وشغلته ما تروح الحماية )~ ~( يمكنك حذف الحماية في اي وقت )~ ~( يمكنك روئية شكل ماركر الحماية قبل تشغلها )~ ~~( شرح الاستخدام )~~ ~( [ F8 ] من [ pl ] كلمة فتح الوحة الحالية )~ ~( [ Settings_Server.lua ] من ملف [ F8 ] لتعديل كلمة فتح الوحة من )~ ~( [ Settings_Server.lua ] لتعديل سريالات التي تفح لهم الوحة )~ ~~( ملاحظات )~~ ~( يب وضع المود بقروب الادمن والا حذف الحماية لن يعمل )~ ~~( للتواصل معي )~~ ~( Facebook : MR.Mosa )~ ~( WhatsApp : +972056997271 )~ ~~( انواع الحماية )~~ ~~( فيدو بسيط للشرح , اسف على الجودة )~~ ~~( لتحميل المود )~~ ~~[( [ واخيرا للتحميل اضغط على : [ سبحان الله )]~~
    4 points
  2. يعيال طقت براسي فكره رهيبه عشان التخريب والاطفال وذا كله وش رايكم اسويلكم مود مربوط مع موقعي الخاص بي https://masters-host.com/ طبعا ما بيكون خاص باستضافتي بيكون لكل الاستضافات المود وظيفته ان عند اعطاء احد حظر في سيرفر يتم اعطاءه حظر في جميع السيرفرات الي تحتوي على هذا المود ويتم رفع كامل بياناته سيريال-ايبي-اسم حساب الخ الى الموقع الخاص بنا ويقوم بارسال امر الحظر الى جميع السيرفرات المسجله في هذا البلاكلست من رايي شي فخم يرعب المخربين والهكرز والى اخره وادري انه بيحط استضافتي في خطر لكن مافي مانع من التجربه طبعا لتحميل المود بخصصلكم صفحه تقوم بادخال ايبي السيرفر حقك والبورت فقط لكي يتم تسجيل سيرفرك كمشارك في الحمله ذي يعني لما تجي تحظر احد ينحظر بباقي السيرفرات المسجله طيب افرض انا مابي اشترك في الحمله ذي وجا طفل وحط الايبي حق سيرفري والبورت اقولك عادي ما بيظر طالما انك ماركبت المود على سيرفرك طبعا لو في موافقات واجد بسويه باذن الله بس بعد الاختبارات لاني بكره ببدا اختبارات نصف الترم الثاني
    3 points
  3. + القسم غلط . روح قسم البرمجة + مقدر اساعدك بتقليد لسيرفر انا عضو فيه
    2 points
  4. عندك خطأ بالكود :"| كودك ناتجه بيخلي بس اللاعب الي بيظهر هو اخر لاعب بالسيرفر التصحيح : function guiComboBoxAddPlayers( combo ) if( getElementType( combo ) == "gui-combobox" ) then guiComboBoxClear ( combo ) for _, players in ipairs(getElementsByType('player')) do guiComboBoxAddItem(combo, getPlayerName(players)) end end end
    2 points
  5. Better optimization. I've tested your script, did the button performance test. 30 fps. Now, realistically you wouldn't really have 1k buttons but I did check overall performance, and it's just not that great imo. I found that it takes up quite a bit of resources and especially on older computers with lower end gpu's it has negative performance impact. Seems that your code is doing lots of calculations each frame when it doesn't have to. You can overcome some of this by using render targets and eliminate any unnecessary calculations by only updating it when a change occurs, like a mouse enter/leave, click, etc. Render targets are great for this, however, real optimizations would still need to be done. Secondly, why didn't you make it object-oriented? That would certainly make your code a lot shorter, more structured and a lot more manageable than it is right now. Especially with inheritance you could probably cut down your code up to 1/3 of what it is now. I can give you a hand in that if you like. Anyway, keep up the work, you certainly have one of the most complete frameworks out there which I applaud you for that.
    2 points
  6. حلو جداً بس لو تضيف ارقمنت زياده بحيث المبرمج يحدد يكون فيه اكواد hex حقت اللاعبين او لا وبالتوفيق وبداية جميلة
    2 points
  7. السلام عليكم اليوم اول يوزفل اسويه لكم ولاكن مدري هذا يوزفل او لا ض1 لاكن سويته للأفادة وهو عبار عن انك تضيف لاعبين ب كومبو بوكس اعرف انه سهل ولاكن سويته للي ما يعرف مع انو الكل يعرف بس بداية لي يلا نشوف الكود Source Code : function guiComboBoxAddPlayers( combo ) if( getElementType( combo ) == "gui-combobox" ) then for _, players in ipairs(getElementsByType('player')) do guiComboBoxClear ( combo ) guiComboBoxAddItem(combo, getPlayerName(players)) end end end مثال : GUIEditor = { combobox = {} } local screenW, screenH = guiGetScreenSize() GUIEditor.combobox[1] = guiCreateComboBox((screenW - 346) / 2, (screenH - 173) / 2, 346, 173, "", false) guiSetVisible(GUIEditor.combobox[1], false) bindKey("F3","down", function() if ( guiGetVisible(GUIEditor.combobox[1]) == false ) then guiSetVisible(GUIEditor.combobox[1], true) showCursor(true) guiComboBoxAddPlayers( GUIEditor.combobox[1] ) else guiSetVisible(GUIEditor.combobox[1], false) showCursor(false) end end ) النتيجة :
    2 points
  8. كيف الحال انشاء الله بخير,, سويتلكم مود يمكن يكون حصري فـ النشر, وغير مشفر المود عبارة عن انك تقدر تتحكم في اللاعبين الموجودين في الديربي تقدر تعدل علي سريالك من ملف - Client ادري ان بيجي واحد يقول سيرفر سايد ومدري ايش, الزبده مابيصير مشاكل, 1 - اضافة خاصية طرد اللاعب من السيرفر مع سبب, 2 - اضافة خاصية وضع اي عالم اخر, 3 - وضع خاصية سحب سيارة + قتل اللاعب + مراقبة اللاعب 4 - اهم شئ, خاصية حظر اللاعب من الديربي, 5 - تم اضافة خاصية تجميد اللاعب وفك تجميد اللاعب ( جديد )ء طبعا لو تبي تحظر لاعب في الديربي بتخش ع ملف كلينت EDIT:V5 : تقدر تصكه حظر بإستخدام اللوحة هذي تقدر انك تضيف السريالات اللي تبي تحظرها, يجب اضافة المود لـ قروب الادمن لـ السماح بـ صك الاعب كيك يجب عليك وضع مود الديربي الموجود داخل الملف DX-DERBY او اذا عندك مود ديربي مختلف تقدر تعدل عليه عشان يظبط معـك الحظر الطريقة # خش علي ملف الديربي حقك وادخل علي ملف الـ سيرفر Server.lua بتلاقي فـ خامس سطر الكلام هذا if tostring(message) == "ديربي" and checkDuel(source) == "prestart" and ( not checkExistPlrOnDuel(source) ) then بتخليه كذا if tostring(message) == "ديربي" and checkDuel(source) == "prestart" and ( not checkExistPlrOnDuel(source) ) then if getAccountData(getPlayerAccount(source),'derbban') then if string.find(message,"ديربي") then return end end طبعا الخطوات هذي للناس اللي عندها مود ديربي غير اللي موجود مع الملف !! تم ازالة الاصدارات القديمة لوجود مشاكل بها!! لتحميل احدث اصدار , https://up.top4top.net/downloadf-803r1sxz1-zip.html لتحميل نسخة الديربي , https://up.top4top.net/downloadf-8034dst51-zip.html اي مشكلة تواجهكم قولوها فـ الخاص وانشاء الله احلها
    1 point
  9. Thisdp's DirectX Graphical User Interface System ( MTASA 2D+3D DxLIB ) This dxlib provide dx gui functions and events to make it easier to use and alternative to change the style more flexibly. Features: 1. Update Check(DGS will notice you if there is a higher version, and you can choose to ignore it or disable it in the config file) Update Command: "updatedgs" 2. Dx GUI Types: Basic: Window Edit Box Button Grid List Image Scroll Bar Scroll Pane Text Label Tab Panel Detect Area Radio Button Combo Box Check Box Memo 3D Interface 3D Text Browser Switch Button Selector Plugin: Media Browser Color Picker Mask Remote Image QRCode Blur Box Rounded Rectangle Nine Slice Scaling Object Preview Support Canvas Scroll Pane's 3D Effect 3. Edit/Memo rewrite ( You can no longer find the problems in dgs, the problems which exist in cegui) 4. Detect Area is efficient when checking whether your cursor is in a complicated shape. 5. Debug Mode , Command: "debugdgs" 6. You can apply shader to the dxgui ( Compatible with some resources like Objec tPreview ). 7. Include CMD, Command: "dgscmd" ( For more help, please input "help" in the CMD ) 8. Memo/Edit rewritten. 9. Object Oriented Programming Class. 10. Render Target Failure Check ( Warns when there's no enough video memory to create render target ). 11. DGS resembles cegui, you can find the similar feeling when scripting with dgs. 12. 48-hour-response service, your suggestions and bug report will be dealt with in 48 hours ( or less, like 12 hours ? ) 13. Custom Style system 14. Built-in shader plugin 15. More properties 16. Built in multi-language support 17. Simple GUI To DGS (G2D) Notice:Do not close your server or stop the script when it is updating. Wiki: https://wiki.multitheftauto.com/wiki/Dgs ( Still Working In Process ) Auto Completion For N++ (Thanks To Ahmed Ly): http://www.mediafire.com/file/m6dm7815d5dihax/Lua.zip Discord Server: https://discord.gg/QEs8q6W Download DGS : https://github.com/thisdp/dgs Notice: Need acl rights to call fetchRemote/getPlayerIP. If you want to sell your script which involves DGS, please exclude DGS from your price. HurtWorld Backpack Panel(Example) DGS Network Monitor(Built-in)
    1 point
  10. I've decided to try creating tutorials to teach scripting from the ground up. I get asked this a lot as a developer at Owl Gaming, and I figured it would be something fun to try! I really believe that what you learn as a Multi Theft Auto developer will help you later in life. Personally I've been scripting MTA servers for the past six or seven years, and have turned that into a career in web development, where I now work at Weebly, one of the website builders you see frequently used by people for their MTA server. So give it a try, and if you get good, come join me as a developer at Owl and let's make something fun together. In episode one, I cover the basics of setting up MTA for scripting your own server, and getting started with your first resources. In episode two I cover at a high level data types, creating your first SQLite database, and improving upon our vehicles resource so we can restart it without deleting all of our created vehicles.
    1 point
  11. 'onClientRender' dxDrawRectangle dxDrawText 'onClientClick'
    1 point
  12. انا عندي خبرة في برمجة الويب سايت خبرة سنتين تقريباً ببرمج معك لو تبي لغة PHP or Python (Server Said) اما اذا ASP اسف ما اعرف
    1 point
  13. طريقه ثانيه للافاده _T = { {Text = "فتح اللوحه الاولي", Name = window1}, {Text = "فتح اللوحه الثانيه", Name = window2}, {Text = "فتح اللوحه الثالثه", Name = window3},} _g = gridlist -- اسم القريد for _K, _G in pairs(_T) do local row = guiGridListAddRow(_g) guiGridListSetItemText(_g,row,1,_G.Text,false,false) guiGridListSetItemData(_g,row,1,_G.Name) end addEventHandler( "onClientGUIClick",_g,function ( ) _R = guiGridListGetSelectedItem(_g) if _R ~= -1 then _D = guiGridListGetItemData(_g,_R,1) if guiGetVisible(_D) == true then return guiSetVisible(_D,false) end guiSetVisible(_D,true) end end,false)
    1 point
  14. Hi guys. Here some models for making you personal bunker. If like this idea i can make levels stairs and interiors. Download in description.
    1 point
  15. Ohh next level idea great bro keep it up !!
    1 point
  16. For freeroam its eassy press p panel then double click freeroam settings /disable weapon add here the weapon id save then restart free roam If you want in script type give function of take weapon ! In damage purpose(body parts) use cancel event ! Go through MTA sa wiki you will get all
    1 point
  17. هو عنده كم خيار, + برضو طريقتك صحيحه .
    1 point
  18. ابراهيم - السعودية (الطائف) - 20 javascript < خلصت الاساسيات ، php - python - sql < باقي مابديت فيهم وببدأ ان شاءالله بعد ما اخلص من الجافا سكربت Html + css ليست لغة برمجة ، تعتبر لغة ترميز
    1 point
  19. هههههههههههههه سرقتها منك والله عرفت الا تقولي عنها تسلم يا قلبي
    1 point
  20. إنني اري المقدمه الخاصة بي في مقدمتك يافتي ,, ياللهول لقد أبدعت يافتي
    1 point
  21. In this episode we take a look at MTA:SA's OOP methods!
    1 point
  22. X X X الأكواد الجاهزة بتدمرك وعمرك بتتعلم
    1 point
  23. موداتك روعة مثلك انت دائماً مبدع استمر بس لو تسوي للسنايبر كمان
    1 point
  24. لازم تكون متاعقد مع سيرفرات أمينة وما تحكم إلا بالعدل , اما يجيك واحد يصكك باند ظلم , كذا يروح فيها الشخص , ما يقدر يخش سيرفري , و أوافق فكرة الأخ راكان , اذا سويتها بيكون فل الفل
    1 point
  25. استخدمهم بالشكل هذا local time = getRealTime( ) local h = time.hour local m = time.minute local s = time.second local y = time.year+1900 local m_ = time.month+1 local d = time.monthday
    1 point
  26. راحت ايام الطيبين . حاليا : #ثورة_الأكواد_الجاهزة بالمنتدى .
    1 point
  27. فكرتك جميله جدًا .. بس عشان يقبل الحظر لازم يكون متفق عليه من 3 مسؤولين بالموقع او تجيب انت مسؤولين + اللي يطلب حظر يكون حاط السبب + اسم الشخص + حسابه + سيرياله + يمدي اي شخص يشوف الحظر ويقدر يوافق او لا طبعا لو ضفت انت حظر بيكون الجميع موافقين ويقدر شخص يدخل ويلغي الموافقه لو لغى الموافقه يصير يقدر الشخص المحظور يخش السيرفر فكره رائعه .. بالتوفيق
    1 point
  28. هههههههههههه قصدك دا ؟ هههههههههههههههههههههههه
    1 point
  29. Thanks for reply. Of couse about lighting now its only the beta. I want make some models for making the complete base camp. Levels stairs fence gate etc. .
    1 point
  30. @Mo5TaR يرجى عدم تكرار المواضيع. اكمل في هذا الموضوع: https://forum.multitheftauto.com/topic/102325-طلب-برمجه-قيم-مود-كامل-بمقابل/
    1 point
  31. I have one. It may not work (depends on how similar your dgs to mta cgui). Make a resource that will patch other resources to replace existing scripts based on cgui with dgs. For example it may add a file into resource of this kind: guiCreateButton = exports.dgs.guiCreateButton -- global variable guiCreateButton will store exported function that will be called instead of mta's cgui function anywhere within the resource guiCreateWindow = exports.dgs.guiCreateWindow In this file you will place all your functions that replace mta default functions. So all calls of default mta funcs within the resource would be redirected to dgs system. As for events - you will have to rewrite their names within dgs script to be same as standart ones. I'm sure this would be very useful for lots of people who don't have time/motivation to rewrite their old existing scripts with your dgs system.
    1 point
  32. Its working fine by server side I test it already
    1 point
  33. i dont see any erros for my side of testing it working fine !!
    1 point
  34. good keep learning new things!!
    1 point
  35. How about implementing Python as a scripting language? I looked over the source code - its organization makes it not look so hard to do. Python is way more powerful than Lua (but I don't say that Python should replace Lua - just be the second option) and there is a thousands of libraries that allows making awesome things
    1 point
  36. هو عرض المقابل والي يبي يكلمة مالها داعي تردون بالموضوع بهالطريقة صراحتاً ,
    1 point
  37. كيف حالكم ان شاء الله بخير , اليوم رجعنا بـ نظام بسيط ويسهل عليك الامور طبعا النظام واضح من العنوان انك تعطي احد لايك او تجيب لايكاته وتقدر تستخدمه في اشياء كثيرة مثل مسابقات والى اخره طبعا النظام مانب مستعمل فيه الداتا ولا التيبلات فقط السكل الفنكشنات قبل التحديث الفنكشنات بعد التحديث الاحداث الخاصة بالنظام بعد التحديث بعض الامثلة من خارج السكربت على الفنكشنات والحدث تم اضافة ميزة الايكات في السكور بورد وهي اختياريه طبعا السكربت مشفر لحفظ الحقوق فقط وانا ماودي اشفر سكربتاتي لكن فيه اطفال تجبرني على اني اشفر : الاهدائات Just , Mr.Saad , خلف , خالد العمري , كور , برستيج , مجمتع العرب روابط تحميل الاصدارات وهذا الي كان عندي اليوم في امان الله وحفظ الرحمن
    1 point
  38. Hello Ladies and Gentlemen! It took me really long to prepare everything and get ready at its best state. Most of you waited for the mods I've been using lately, some even tried to copy. I never liked to rush and I'm more than sure today's release gonna compensate all the waiting! I am not just adding new stuff today, no, I've made a total remake of already exciting mods as well. Today's release contains a total of 22 mods (!). The idea is to satisfy everyone's expectations of a perfect mod - get the version you like the most! vM1cra v1 No Plate: http://www.mediafire.com/download/aeqnh3tb5p3zbhf/InfernusvM1crav1NoPlate.zip Plate: http://www.mediafire.com/download/6rrngjvxj9f4tfy/InfernusvM1crav1Plate.zip Additional Spoiler No Plate: http://www.mediafire.com/download/p09b9ofpfdfv3oe/InfernusvM1crav1AdditionalSpoilerNoPlate.zip Additional Spoiler Plate: http://www.mediafire.com/download/3x8hcbt7buc4f9b/InfernusvM1crav1AdditionalSpoilerPlate.zip Unique Spoiler No Plate: http://www.mediafire.com/download/7bd1qd39ac78ubd/InfernusvM1crav1UniqueSpoilerNoPlate.zip Unique Spoiler Plate: http://www.mediafire.com/download/nqfy2rixkf286cb/InfernusvM1crav1UniqueSpoilerPlate.zip vM1cra v3 No Plate: http://www.mediafire.com/download/77ee6opxovoa34n/InfernusvM1crav3NoPlate.zip Plate: http://www.mediafire.com/download/bd940y57e8qa2gx/InfernusvM1crav3Plate.zip Additional Spoiler No Plate: http://www.mediafire.com/download/c7o20dok5df7tvr/InfernusvM1crav3AdditionalSpoilerNoPlate.zip Additional Spoiler Plate: http://www.mediafire.com/download/njjrjrqe9a5s08e/InfernusvM1crav3AdditionalSpoilerPlate.zip Unique Spoiler No Plate: http://www.mediafire.com/download/9vwgqc02skirpe0/InfernusvM1crav3UniqueSpoilerNoPlate.zip Unique Spoiler Plate: http://www.mediafire.com/download/s0fbhsm1pog1faf/InfernusvM1crav3UniqueSpoilerPlate.zip vM1cra v5 No Plate: http://www.mediafire.com/download/v5jycvjidv9sh8t/InfernusvM1crav5NoPlate.zip Plate: http://www.mediafire.com/download/pm1x6yaetmkpsma/InfernusvM1crav5Plate.zip Additional Spoiler No Plate: http://www.mediafire.com/download/a4xco25kje664hj/InfernusvM1crav5AdditionalSpoilerNoPlate.zip Additional Spoiler Plate: http://www.mediafire.com/download/2trsm5p4nl6qnwj/InfernusvM1crav5AdditionalSpoilerPlate.zip Unique Spoiler No Plate: http://www.mediafire.com/download/etaviluvexpj241/InfernusvM1crav5UniqueSpoilerNoPlate.zip Unique Spoiler Plate: http://www.mediafire.com/download/zc98opykoqiijtc/InfernusvM1crav5UniqueSpoilerPlate.zip vM1cra v5 Skin Stickers: http://www.mediafire.com/download/b29bgg41ci8828f/InfernusvM1crav5SkinStickers.zip Camouflage: http://www.mediafire.com/download/sw6fzpq7nwo6e4q/InfernusvM1crav5SkinCamouflage.zip Camouflage 2: http://www.mediafire.com/download/kmlxwnzp1z7y7xn/InfernusvM1crav5SkinCamouflage2.zip Camouflage 3: http://www.mediafire.com/download/9eplbu6w6bf4ht3/InfernusvM1crav5SkinCamouflage3.zip Download all of the Mods http://www.mediafire.com/download/qd2c91hsdas6afp/InfernusvM1craAllMods.zip Installation In order to make the mod work on FFS, you have to download original infernus.col file and install it together with the mod. Credits Mods support Ultrathing reflection (I would highly appreciate if someone tested ENB reflection). Bumpers made by Str1kez. Wheels are from Juiced 2 HIN Wheels Pack 3. Led Lights made by NitroN. Links Subscribe to my Youtube channel: https://www.youtube.com/MicraTV. Follow these networks to stay in contact with me: Facebook: http://facebook.com/MicraTV. Twitter: https://twitter.com/MicraTV. Best regards, Micra.
    1 point
  39. أكيد إنت ودك الشيء المضمون ١٠٠ % ف لازم تتعب شوي .
    0 points
  40. 0 points
×
×
  • Create New...