Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 04/05/18 in all areas

  1. A Renegade Network Server ______________________________________ The Zombie Invasion The Zombie Invasion is a Zombie TDM/RPG server. It focusses on only one aspect: making sure the player enjoys his time. The Zombie Invasion is an ongoing project since early 2014, and we've been developing ever since. Our playerbase record is 70 players, reached in 2015. Without furder ado, here are some screenshots. ----------------------------------------------------------------------------------------- ----------------------------------------------------------------------------------------- We have alot of beautiful, post-apocalyptic maps in our server. You can roam around the server, and you'll certainly find some great work! We also have alot of things you can do! Kill zombies, earn XP and level up, unlock teams and classes, buy a :~load of guns, kill Nemesis, do side missions, save survivors at the red cross, hunt for supply drops, kill others, run for presidency, make a group and have fun together, donate to get nice extra stuff, buy a Buggy and drop some bombs, and more! You can even be a zombie yourself! Do you want to pay us a visit? We would love to see you in-game! Visit us now at mtasa://92.42.44.53:22133! Join our Discord! http://discord.gg/bEncKkKMYE Join our Website! http://renegadenetwork.net/ See you in the apocalypse! - The Zombie Invasion Staff Team
    1 point
  2. Hey, after a long time I am releasing a newer version of this Multigamemode. You can find it on Github. Some Features: - Create as many arenas as you like by just calling a simple function providing a name and other properties. - Allow players to create their own arenas, in which they are automatically added as an admin for their arena. These custom arenas are destroyed the moment everyone has left them. - Use the Training button to train every map available on the server. - Common features like respawn, rewind, cp/tp etc. to help practising maps. - Custom ACL system: Each arena has their own acl file, yet you still can define global admins in the usual server acl. - A few maps have been included to make it easier to test and show the way how maps have to be organized. A little screenshot of the Lobby: More Screenshots can be found on Github for now. In order to use this Multigamemode, you will have to follow a quick instruction: Some of you might have seen this Multigamemode on the DDC server. This is a slightly different version from what we use on DDC. It excludes a few resource such as Userpanel or Stats, as they rely on our MySQL database and therefore cannot be shared so easy. Also, you will have to change the way Login works, if you want to login using an account of the mta server or remotely by using a website. Right now you can only login with an account on the ddc forum, as most people are gonna change the login to what they need anyway. Not everything is done in the best way and I would probably do some things differently now, but it works quite good and might be a good base for people to start their own project. If you want to contribute, you can create a pull request on Github. Bonsai
    1 point
  3. От 3 до 5 человек готов обучить писать/переписывать скрипты для МТА. Условие - бесплатно. Можно закинуть пару рублей по желанию. Будете е**нить - дальше обучать не буду. https://vk.com/lbecker
    1 point
  4. السلام عليكم ورحمة الله تعالى وبركاته, كيف الحال؟ إن شاء الله بخير اليوم معنا سكربت النك ( آعلى تواجد ) باف7 الفيديو الخاص بالسكربت :-https://www.youtube.com/watch?v=T6012jG0I7g&t=3sالصورة الخاص بالسكربت :- المميزات : - تستطيع وضع اسم زخرفة على اسم الحساب , ---------- حقوق لأخ : @MR.S3D
    1 point
  5. لا شكر على واجب +_+
    1 point
  6. شكرا لـ @Master_MTA
    1 point
  7. I already started working with JSON, I'll update this topic if I face any problem with the code, thanks ShyF and IIYAMA. You guys helped me a lot.
    1 point
  8. انته عاقل للي انته بتقولو يبني !
    1 point
  9. احيييييييييييه وواثق اوي احيييييييييه ههههههههه اعذرني والله ذبحتني بالتوفيق طريقتك خاطئه والسبب بتحتتاج تسوي لوب ينزل على كل 0.1 احداثي من محور x,y,z لك تتخيل كمية ال fps اللي بتروح تقريبا بيصير بالسالب هههههه هذا اذا ما انحرق الجهاز +_+
    1 point
  10. addEventHandler("onPlayerJoin",root, function ( ) outputChatBox("Welcome .",source,0,255,0,true) spawnPlayer(source,x,y,z,0, 230) end ) function saveclothes ( ) local skin = getElementModel ( source ) if skin then setElementData ( source, "skinID", skin ) -- علشان لو هتعملها بزر لكن لو من غير زر ملهاش لازمه end setTimer ( spawnped, 5000, 1, skin, source ) -- to revive the player after 5sec from death end addEventHandler ( "onPlayerWasted", root, saveclothes ) function spawnped ( skin, player ) spawnPlayer ( player, x, y, z, 0, skin ) end -- لو عاوز تعملها بزر هتعمل ترايقر و تجيب الداتا اللي احنا حطيناها ديه أستبدل x,y,z بالاحداثيات . و 230 بالشخصية اول م يخش
    1 point
  11. onClientRender срабатывает при отрисовке каждого кадра (представьте какая будет нагрузка на клиента если эта карусель будет повторяться 30-60 раз в секунду). Плюс это клиентское событие, т. е. нужно будет синхронизировать между клиентами. Едва ли это хорошая идея Второй вариант более жизнеспособный
    1 point
  12. Desligue o Freeroam.
    1 point
  13. ولية ماتساوي الميوت برتبة اسل وتعطيها للي تبيها تفتح لة
    1 point
  14. json is not that hard to use, its compact and really simplified. You make a lua table, then make a json file, convert the lua table to json with toJSON and then write it to the json file, and when you want to load it you just use fromJSON to convert it back to a lua table. That's why I prefer JSON over everything. local data = { {'blah','blah','blah'}, {'blah','blah','blah'} } function save() local file = fileOpen('save.json') or fileCreate('save.json') fileWrite(toJSON(data),file) fileClose(file) end function load() if fileExists('save.json') then local file = fileOpen('save.json') local size = fileGetSize(file) local buffer = fileRead(file,size) data = fromJSON(buffer) fileClose(file) end end If you were to use different saving methods than xml you would see why I treat it with disrespect. I personally prefer json and mysql.
    1 point
  15. New Update to the table MyBestProgrammers = { {"#Soking"}, {"iMr.Wifi"}, {"Ahmed Ly"}, {"Default"}, {"MR.GRAND"}, {"Master_MTA"}, {"Abu-Solo"}, {"!#NssoR"}, {"MR.S3D"}, {"Killer Project"}, {"MR.StoRm"}, {"Abdul KariM"}, {"DTC12"}, {"Jupiter"}, {"xIRock"}, {"DABL"}, {"Elnegm Ahmed"}, {"7UP"}, {"#x1AhMeD,-09"}, {"|Mr|-Talal07-|"} }
    1 point
  16. Thanks. It will be released when we are done testing.
    1 point
  17. Yes it is, they're active on Discord: https://discordapp.com/invite/TxrGCQQ
    1 point
  18. سلام عليكم جبتلكم وظايف ما ادري بتفيدكم او لا لكن خلنا نشوف اول واحده dxDrawLiendText function dxDrawLiendText(text, x, y, width, height, color, widthofline,colorofline,textcolor,textsize, postGUI ) local finalx=x+width local textcolor=textcolor or tocolor(255,255,255,255) local textsize=textsize or 1.3 local colorofline=colorofline or tocolor(255,255,255,255) local finaly=y+height local widthofline=widthofline or 2 dxDrawLine ( x, y, finalx, y, colorofline, widthofline, postGUI ) -- Top dxDrawLine ( x, y, x,finaly, colorofline, widthofline, postGUI ) -- Left dxDrawLine ( finalx, y, finalx,finaly, colorofline, widthofline, postGUI ) -- Right dxDrawLine ( x, finaly, finalx, finaly, colorofline, widthofline, postGUI ) -- Bottom return dxDrawText(text,x,y,finalx,finaly,textcolor,textsize,"default",'left','top',true,false,postGUI) end الثانية dxDrawLiendAndBackgroundText function dxDrawLiendAndBackgroundText(text, x, y, width, height, color, widthofline,colorofbackground,colorofline,textcolor,textsize, postGUI ) local finalx=x+width local textcolor=textcolor or tocolor(255,255,255,255) local colorofbackground=colorofbackground or tocolor(0,0,0,150) local textsize=textsize or 1.3 local colorofline=colorofline or tocolor(255,255,255,255) local finaly=y+height local widthofline=widthofline or 2 dxDrawRectangle ( x, y, width,height, colorofbackground,postGUI) ---Background dxDrawLine ( x, y, finalx, y, colorofline, widthofline, postGUI ) -- Top dxDrawLine ( x, y, x,finaly, colorofline, widthofline, postGUI ) -- Left dxDrawLine ( finalx, y, finalx,finaly, colorofline, widthofline, postGUI ) -- Right dxDrawLine ( x, finaly, finalx, finaly, colorofline, widthofline, postGUI ) -- Bottom return dxDrawText(text,x,y,finalx,finaly,textcolor,textsize,"default",'left','top',true,false,postGUI) end وبس بالتوفيق انا ما جربتها صراحه لكن جت في مخي سويتها وانا جالس يا ليت اللي يقدر يجربها ويصورها ويحطها هنا اكون شاكر له بالتوفيق
    1 point
  19. السلام عليكم ورحمة الله وبركاته, حاب اقدم لكم بالموضوع هاذا بعض التفاصيل حول سيرفر راوس الشهير - الوظايف المتاحة بالسيرفر : - وظيفة ضابط شرطه - وظيفة مزارع - وظيفة رجل الإطفاء - وظيفة صائد سمك - وظيفة ميكانيكي - وظيفة مسعف - وظيفة عامل منجم -وظيفة عامل نظافة - وظيفة سائق حافلة - وظيفة سائق شاحنة - وظيفة حطاب - وظيفة عامل مصنع - وظيفة مكتب التحقيقات الفيدرالية - وظيفة عسكري ( جيش ) - وظيفة طيار ------ كيف احصل على احد الوظايف هذه؟ بالاول تذهب الى مكان الوظيفة تحدده عبر اف4 بعدين بتضغط اف11 بتلقى خط محدد لين مكان الوظيفة - بعدين راح تمشي مع الخط الاحمر الي تم تحديده لك مسبقآ الين ماتتجه الى المكان الخاص بالوظيفة - بعد كذا بتفتح لك لوحة فيها معلومات عن الوظيفة وكيف تشتغل والخ بعد كذا خلاص مبروك عليك صرت موظف تاخذ سيارتك او على حسب طبيعة العمل --- بعض الشروحات العامة اولا كيف تغير الغة الى عربي بدلا من انجليزي ؟ تذهب الى اف1 وتدخل على Server Settings تختار Arabic وبعدين Save ومبروك عليك ------------ كيف اخذ رخصة قيادة ؟ تذهب الى اف11 بعدين راح تلقى بلوس سانتوس علامة D العلامة موجوده بجانب DMV للي يعرفه - راح يكون هناك 2 تدريبات و 1 اختبار نهائي التدريب الاول راح يكون فيه سهم محدد لك لو طلعت منه راح تعيد ( لاحد يقول مو واقعي فيه ضابط راكب معك ) التدريب الثاني لو تخطيت الاشارة او الخط المحدد لك راح تعيد الاختبار تعيد التدريبين السابقين لو اخطئت شي صغير مره بتعيد من التدريب الاول - جانب من بعض الصور بالسيرفر ----- بعض الاشياء الجانبية بالسيرفر : يوجد دهون + املاح وسمنة وغيرهم اذا كانت الدهون لديك عالية ستكون سمين بالطبع, وستحتاج الى رياضة - يوجد بالسيرفر محل اثاث وبامكانك بناء بيت كامل من المحل هذا - يوجد نظام محلات غير مكتمل, بامكانك شراء بضاعة لمحلك وستصلك خلال 24س --- بالختام بعض المعلومات ممكن تهمك : - mtasa://134.119.177.122:22003 [email protected] - تم افتتاح السيرفر اول مره 2012 ( باسم ثاني ) وتم تغيره الى راوس 2014 - متخيلين معنا ان السيرفر ذا من برمجة ناس عرب؟؟ ------- اترك تعليقك لاهنت كسرت يدي وانا اكتب مسكين
    1 point
  20. I wouldn't say that so quickly. To me his example looks valid. /add d six random[x] = y (or overwrite, `set` would be a better command based on it's functionality) /rem d if random[x] then random[x] = nil end
    1 point
×
×
  • Create New...