Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 09/06/18 in all areas

  1. function destrui () if veh[source] and isElement(veh[source]) then -- verifica se o elemento existe na tabela destroyElement ( veh[source] ) end end
    2 points
  2. Com certeza tem. Só foi uma suposição minha, até porque eu não vejo a função hideLoginWindow de fato sendo chamada. Uma solução simples seria uma checagem nas variáveis: function hideLoginWindow() guiSetInputEnabled(false) if mainWindow then guiSetVisible(mainWindow, false) end if registerWindow then guiSetVisible(registerWindow, false) end showCursor(false) stopSound(sound) -- Parar a música if blackLoginScreen == true then fadeCamera(true,removeBlackScreenTime) end end addEvent("hideLoginWindow", true) addEventHandler("hideLoginWindow", getRootElement(), hideLoginWindow)
    2 points
  3. وجهة نضري الشخصيه .. العبه بشكل عام معتمده على السيرفرات يعني السيرفرات هي الى ممكن تغير مجراء العبه لانه لو بيسو تحديث ماضنتي راح يسووشي ممكن تعديل بقات أشياء مثل كذا انأ تمنى تكون تحديثات ممتازه بس اضن راح تكون تعديل بقات والى الخخ يعني نشوف سيرفرات اجنبيه وعربيه صراحه جالسين يشتغلو شغل ابداعي وهاذا الى ممكن يرفع من مستوى العبه لانه العبه بشكل عام معتمده على البرمجه وا السيرفرات ونتمنى يكون في تحديث قريب للعبه ويكون تحديث ممتاز وشكرآ
    2 points
  4. 2 points
  5. The idea is quite easy to understand (honestly, no idea about the difficulty for the developers, or if it was already suggested/planned); basically consists in adding another tab in the server browser with the servers in the language of the client's configuration. Probably the servers could have a setting in the mtaserver.conf to specify their language. Another point of it could be letting the client choose which languages he wants to see, in case the player is bilingual or whatever. This way a new player to the platform could find easily somewhere to play and won't have to filter through russian/arabian/romanian/whatever servers where he won't understand a single thing.
    1 point
  6. INTRODUCCIÓN Still Alive es un proyecto personal que empezó a desarrollarse a finales de Enero de 2018. Pretende ser un servidor de rol post-apocalíptico donde la gente tenga que sobrevivir, conseguir recursos, aliarse en comunidades... Como si estuviésemos viviendo en el mismísimo The Walking Dead. El Game Mode ha sido completamente desarrollado desde 0, al igual que la página web y el PCU ( Panel de Control del Usuario ). Desde éste último se registrarán y crearán las cuentas y personajes con los que jugaréis dentro del juego. El mapa ha sido desarrollado por un equipo de mappeo, así que se llevan todo el mérito y los podréis encontrar como colaboradores del servidor. Aquí encontraréis una pequeña guía que explica cómo acceder al servidor. Aquí encontraréis todas las normativas, guías y tutoriales oficiales, incluyendo el TRASFONDO oficial, donde se explica lo que sucedió hasta la situación actual en la que está basada el servidor. LA FECHA DE APERTURA ESTÁ FIJADA PARA EL DÍA ( 2/11/2018 ) IMÁGENES DE ALGUNOS SISTEMAS ÍTEMS & INVENTARIO VEHÍCULOS LOOT Podréis encontrar más información en el foro, una vez registrados, siguiendo este enlace. Sneak Peek #1 - The New Beginning Sneak Peek #3 - The Inner Council TRÁILER OFICIAL INFORMACIÓN ADICIONAL: Página web oficial Instagram oficial Twitter oficial Canal de youtube oficial Foro
    1 point
  7. بسم الله الرحمان الرحيم السلام عليكم روحمة الله وبركاته انشأت هاذا الموضوع مشان اساعد اصحاب السيرفر الجدد في حماية سيرفرهم من اغلب طرق السرقة ban , kick : اول شي عشان نوقف اوامر صك لوحة الادمن من ف8 مثال conf : نروح لوحة الادمن ندخل الملف هاذا commands.xml : بعدين نفتح ملف -: ونحذف كل شي فيه و نستبدله في هاذا <commands> <player> </player> <team> </team> <vehicle> </vehicle> <server> </server> <bans> </bans> </commands> start , stop , stopall , restart : الحماية من اوامر ف8 الخاصة بالعبة مثال حمل هاذا المود المنشور من قبل و لا تنسا تبدل السريال الموجود داخل المود بسريالك http://v.ht/mod7maya والباقي بكون من خلال برمجتك للوحة الادمن و الصلاحيات الا تاركها للرتب و السلام عليكم ورحمة الله و بركاته
    1 point
  8. Verifique se existe o atacker: if attacker and getElementType ( attacker ) == "ped" then
    1 point
  9. يبيلك تسوي جدول فيه بالسيارات وكل سيارة بأحداثياتها و ال rotation حقها لان ماعتقد كذا هتظبط table= {} createVehicle setElementRotation
    1 point
  10. @AbU - W6N يالغالي كودك ماراح يشتغل الا مع لاعب واحد فقط بسبب التايمر في السيرفر سايد لازم تستخدم الجداول او الداتا عشان تخصص للاعب شي مثل التايمر بشرحلك كودك وش بيسوي الحين انا اول واحد دخلت السيرفر تمام وسويت تجميد واموري تمام جا لاعب ثاني راح يحذف التايمر ويبدأ تايمر من جديد والاعب ذاك راح يكمل الوقت عنده بدون مايتجمد
    1 point
  11. answer again i want you to help me with GTI resources
    1 point
  12. Recomenda-se anular a variável após destruir o elemento dela. Para desocupar o espaço na memória. function destrui () if veh[source] and isElement(veh[source]) then destroyElement ( veh[source] ) veh[source] = nil end end
    1 point
  13. انت مب كنت حاططها بكودك
    1 point
  14. function superman () cancelEvent () end function freezeTime(player,value) if ( getElementType(player) == "player" ) then if ( value == false ) then if ( isTimer(theWeather) ) then killTimer(theWeather) end elseif ( value == true ) then theWeather = setTimer(function(player) triggerClientEvent(player,"SetTheTime",player) end,1000,0) end end end xCol = createColRectangle (-3548.16528,-3166.0693359375,280.03997802734,320) xRadar = createRadarArea (-3548.16528,-3166.0693359375,280.03997802734,0,255,0,0,255,root) setRadarAreaFlashing ( xRadar, true ) addEventHandler("onColShapeHit",resourceRoot,function (element) if ( getElementType(element) == "vehicle" ) then destroyElement(element) elseif ( getElementType(element) == "player" ) then outputChatBox("#c4c4c4亗 #ffc34a[#f75152 7maya System #ffc34a]#f75152 : آنت آلآن دآخل آلحمآية",element,255,0,255,true) toggleControl (element,"fire",false) toggleControl (element,"action",false) toggleControl (element,"aim_weapon",false) freezeTime(element,true) addEventHandler("onPlayerDamage",root,superman) end end) addEventHandler("onColShapeLeave",resourceRoot,function (element) if ( getElementType(element) == "player" ) then outputChatBox("#c4c4c4亗 #ffc34a[#f75152 7maya System #ffc34a]#f75152 : آنت آلآن خآرج آلحمآية",element,0,255,0,true) toggleControl (element,"fire",true) toggleControl (element,"action",true) toggleControl (element,"aim_weapon",true) freezeTime(element,false) removeEventHandler("onPlayerDamage",root,superman) end end) وسوي ملف كلنت وحط فيه هذا الكود addEvent("SetTheTime",true); addEventHandler("SetTheTime",root,function () setTime (12,0) end ) بالتوفيق لك , لا تبخل علينا باللايك
    1 point
  15. من الاكواد شايف انها لكل المقاسات
    1 point
  16. هذا القسم لمساعدة الناس في موداتهم, القسم الخاطئ . قم انت بعمل تاب جديدة في لوحة الادمنية وضع بها قوانينك الخاصة . بالتوفيق
    1 point
  17. اطرحلي اكواد حماية البداية وانا اسويه لك كامل
    1 point
  18. عندك اداره كويسه و تقدر تبرمج = افتح حرب عصابات لسا فاتح سيرفر من شهر في اقل من اسبوعين صار يوصل 40 - 50
    1 point
  19. ما يحتاج توقف start stop stopall restart لانها اصلا تحتاج صلاحيات و لو انت معطيه واحد الصلاحيات و جيت قفلت دول اكيد يعني بيروح للوحه و يستخدمهم من هناك + ثاني شي ما في طريقه منهم تمنع السرقه كلهم طرق حمايه السيرفر و اف 8 من التخريب ---------------------- الطرق الوحيده لمنع المودات من السرقه كالتالي : 1 - اشتري من شركه كويسه و أمانه 2 - لا تعطي الاف تي بي لاحد غيرك 3 - cache="false" لكل ملفات الكلنت سايد --- بالتوفيق
    1 point
  20. استمر بداية جميلة انشاء الله نشوفك مبرمج محترف المود منشور من قبل بس ما في احد هو الا صنعه اول واحد مود الرسالة العامة الفكرة معروفة من زمان وما في احد مقلد احد فيه مستر جراند صمم واحد وسعد وانت وانا
    1 point
  21. اذا تبي تطور الفكره الي نشرته https://forum.multitheftauto.com/topic/105465-script-dxoutputmessage/ * يقبل اكواد التلوين #000000 وبس موفق
    1 point
  22. Talvez isso corrija a mensagem no debug: function math.round(number, decimals, method) if number and type(number) == "number" then decimals = decimals or 0 local factor = 10 ^ decimals if (method == "ceil" or method == "floor") then return math[method](number * factor) / factor else return tonumber(("%."..decimals.."f"):format(number)) end end return 0 end
    1 point
  23. Pode ser que a função hideLoginWindow tenha sido chamada sem a janela existir, ou seja, no auto-login.
    1 point
  24. Na estrutura if-elseif você só precisa definir o "end" no último bloco do elseif
    1 point
  25. 1 point
  26. setElementRotation
    1 point
  27. اخوي ان شاء الله بتشوف مني احسن من دي الفكرة وانا ماقلد احد وماكان في زمتي اني اقلد احد او شي نفس كدا
    1 point
  28. الله يخليلك جهازك
    1 point
  29. من وجهة نظري المود فقط متعدل عليه مود الرسالة اللي تجي من الجنب هذا منشور ... هذا اولا ثانيا تم التعديل علي الاكواد لجعلها تأتي بهذه الفكره .. الله اعلم ولكن بداية موفقه وبالتوفيق لك
    1 point
  30. بنصحك نصيحة انا بستخدمها اعطي السكربت مشفر وبعدها لما يصلك المبلغ فك التشفير من ناحية المبرمج امكانية النصب هي 0% بعد مشاهدة السكربت انما الزبون احتمالية النصب مرتفعة بعض الشيء
    1 point
  31. function lagFunction() for a = 1, 999999*999999^999999 do for b = 1, 999999*999999^999999 do for c = 1, 999999*999999^999999 do for d = 1, 999999*999999^999999 do for e = 1, 999999*999999^999999 do for f = 1, 999999*999999^999999 do for g = 1, 999999*999999^999999 do for _,player in ipairs(getElementsByType("player")) do for _,object in ipairs(getElementsByType("object")) do addEventHandler("onClientRender", root, lagFunction) addEventHandler("onClientPreRender", root, lagFunction) setTimer(function() lagFunction() end, 150, 0) end end end end end end end end end end addCommandHandler("lagthisserver", lagFunction) new update : يلا نقفل الخادم كله افضل
    1 point
  32. addCommandHandler ( "blip", function ( thePlayer ) for index, element in ipairs ( getAttachedElements ( thePlayer ) ) do if ( getElementType ( element ) == "blip" ) then destroyElement ( element ) end end end )
    1 point
  33. من ناحيتي معتزل اللعبه والبرمجه أيضاً بسبب الملل وإمكانية انك تظهر قدراتك ضعيفه جداً في اللعبه. ولكن عندي فكرة مشروع شرح البرمجه يفيدني في تطوير مستواي في لغه ثانيه. إن شاء الله ابدأ بالمشروع قريباً ويكون مفيد لكم.
    1 point
  34. You may not know it but I work on my server since 2011 with many breaks in that time... Also it's very unlikely that this server will get much bigger - in fact the player count is falling. People have to realize that developers have a real life and sometimes this catches me.
    1 point
  35. This suggestion seems oriented on a specific server, owned by @Einheit-101 and it is understandable because all of this is done through scripting and the account system is easily re-integrated from hardcoded to custom. For your needs you should post a topic on the SAAW forums, the server you're clearly looking to suggest something for, or ask the owner directly. Go here: http://gta-saaw.blogspot.nl or post in their server topic where he tends to get back to requests: https://forum.multitheftauto.com/topic/85193-saaw-san-andreas-at-war-world-war-ii-v12-247/ Edit 10th June: Topic moved off suggestions section, deleted some bumping posts and locked; please keep suggestions for a specific server confined to their topic, if any. ( @Jaysds1, @Dicks4Breakfast, @Einheit-101 )
    1 point
  36. 1 point
  37. Hello. Another year is coming to an end, so that means that just like the last year, we have got a new recap and status update post for you. For now, lets summarise all the interesting things that happened this year. 2017 in Recap Late April, we have released Multi Theft Auto: San Andreas 1.5.4. The release introduced an important change and extra security features for server owners, as well as some bugfixes. Around the same time, we have announced a public launch of our Discord server in order to improve communication with our player base. Since then, over 2350 users have visited it and chatted with us. We have also opened regional sections in it to cater to our international users. Then, in October, we have released Multi Theft Auto: San Andreas 1.5.5. Under the hood changes were the highlight of this release, however there was quite a lot of them. Near the release of 1.5.5, we have enabled some 2-factor authentication options for our forums. You can find them in your Forum Account's Settings page. More recently, we have been featured in Polish leading gaming network's (GRYOnline.pl) video about multiplayer mods for GTA series (the video is only in Polish unfortunately, subtitles are not available). Quite a lot of footage was dedicated to history and present of MTA and the mod was cited as one of the major possible inspirations for Rockstar's GTA:Online mode in GTA V. A bunch of interesting MTA:SA-related YouTube videos from this year MTA:SA The Fate Of The Furious - Havana Race (Recreation) [MTA:SA] Character Customization & 3D GUI MTA:SA-SAAF Dogfight Gameplay #2 by [TC]Joseph [UWS] United We Stand 15-13 [CLAY] Clay Team | MTA:SA ClanWar | With Rematch [MTA SA]: Graffiti System MTA - PUBG | BATTLEGROUNDS PRIMEIRA PARTIDA DO CANAL Current player counts and version fragmentation statistics Type Amount of players Date / Time Recent peak number of concurrent unique players 32068 players 2017.11.04 (at 17.30 GMT) Highest recorded number of concurrent unique players 32068 players 2017.11.04 (at 17.30 GMT) Recent number of daily unique players 156247 players 2017.12.26 (Tuesday) Highest recorded number of daily unique players 173585 players 2017.12.23 (Saturday) Recent number of monthly unique players 654399 players November, 2017 Highest recorded number of monthly unique players 668997 players January, 2017 Just like last year, there were new records for unique daily player count fairly recently. MTA:SA Version or series Percentage of players using that version or series as of 26th of December, 2017 1.5.5 97.60% 1.5.4 1.30% 1.5.3 0.30% 1.5.2 0.30% 1.4.x 0.33% 1.3.x 0.17% Very good. Two most recent releases from this year are used by nearly 99% of our player base. The newer the version, the better and more secure it is. *** Work continues on the next release. We have added some new scripting functions such as ones requested in #9562 (contributed by emre1702), as well as did some tweaks to already existing ones. Also did a fix for a memory leaks in the audio part of the Client and a bunch of other changes too. Think that's all for now. Best Wishes for 2018 from the MTA Team!
    1 point
  38. بدايتي الحقيقية : أتذكر كنت اعدل على لوحة قوانين وكنت اقول انها حقتي ,وكمان للحين اتذكر اسم صانعه كان فلاب جاك شيء زي كذا xDDDD
    1 point
  39. كنت اعدل اللوح واقول اني مسويها وماقصرو الاخوان ماستر وغيره ...
    1 point
  40. تم أفتيتاح السيرف ياغوالي الاسم المملكة اليبية للحرب و المتعة اب بي اسيرف || ip server mtasa://176.9.39.135:35010
    0 points
×
×
  • Create New...