Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 11/07/18 in all areas

  1. السلام عليكم ورحمة الله وبركاته اليوم رجعتلكم بمود لسيرفرات الزومبي والي هو مود ال hud المود كما هو قدامكم خصائص جديدة : - معرفة البنق والفبس - معرفة الوقت الحقيقي - لوق فلوس - قولد تحت الفلوس عن طريق داتا الي انت تحددها - لما تعشق السلاح يكتبلك Reloading - نجوم جديدة مكان القديمة - شريط الدم يكون علي حسب الستات حقت الدم حقتك يعني لو خليت دمك 200 يظبط عليه ____________________________________________ الحين نيجي للأهدائات @*RayaN-Alharbi. @Abdul KariM @Rakan# @#,+( _xiRoc[K]; > @#StrOnG_,) @KhaledAlamri @MR.SAMSUNG @iMr.WiFi..! @سعد الغامدي @iPrestege @#Soking @Default#^ @Ahmed Ly @MR.TOUNSI @Master_MTA @#Mr.Pop @!#NssoR_) @The Killer @N3xT @Abu-Solo @AbU - W6N @MR.Mosa @Mr.Mostafa @#[K]iLLeR<3 @#[K]aTakuRI-,? @TAPL @Sha67 @shwaeki @EH10 @</Mr.Tn6eL> @ALw7sH ______________________________________________________ الان وقت التحميل Hud _______________________________________________________ ويلا مع السلامة
    9 points
  2. طبعا , بما ان الموضوع انقلب الي حرب تمت إزالة جميع الردود السابقة وتمت مخالفة البعض منهم ولكن في حال قام احد الاشخاص بإشعال حرب اخري في هذا الموضوع ستتم مخالفته من غير اي سابق إنذار لأن تعليقي هذا يكفي !! واتمني محد يقتبس تعليقي ويعلق , لأن مانبي نخرج من محتوي الموضوع
    2 points
  3. مود جميل وتصميم اجمل استمر يكفو شكراً على لا إهداء
    1 point
  4. مود جميل من شخص مبدع مشاءالله يالغالي تقبل مروري
    1 point
  5. عاشت إيدك شغل جميل يسلمو على الاهداء
    1 point
  6. حلو, بس يبيلك ترتبه شوي بالتوفيق..
    1 point
  7. https://www.lua.org/pil/20.2.html بسيط جداً بس يبيلك تركز
    1 point
  8. function giveWeaponsOnPlayerSpawn() giveWeapon (source, 26, 20) end addEventHandler ("onPlayerSpawn", getRootElement (), giveWeaponsOnPlayerSpawn) -- use function's name here And the meta: <meta> <script src="script.lua" type="server"/> </meta> Use '/debugscript 3' to check the errors within the script.
    1 point
  9. موفق بس الاهدائات ذي من نيتك ولا عشان لايكات ؟ ههههههههههه امزح امزح بالتوفيق لك المودات جدا جميله
    1 point
  10. @#_iMr,[E]coo طولتها وهي ماتستاهل وبعدين اتوقع ماراح يضبط معاه لانه يبي يشيل سطر الفارغ مايكون فيه مسافات الكود الي انت حاطه بيشيل المسافات بس مع اللوب يضيف myString:gmatch ( "[^\r\n]+" ) split وبيشيل له السطر حتى لو كان مستعمل
    1 point
  11. مود مميز وآلله .. وخصآئص جدآ جميلة آستمر يآ وحش وتسلم علي آلآهدآء + حآول تهتم بآلهجولة شوي وتظبطنآ ض1
    1 point
  12. Table = { Text = { 'نوب' , 'ما تعرف تلعب' } } addEventHandler ( 'onPlayerWasted' , root , function ( ) outputChatBox ( Table.Text [ math.random ( 1 , #Table.Text ) ] , source , 255 , 0 , 0 , true ) end ) * الخطأ بكودك ديستروير في فاصلة زايدة , واصلة مسوين اشياء مالها داعي وتجيب لك التعقيد .
    1 point
  13. عمل مميز..بالتوفيق.
    1 point
  14. هيء كفو احسنت يا هيمو خلص كلامي
    1 point
  15. I'd like to point out that MTA didn't invent Lua. Lua is its own independent language used for a plethora of applications, including MTA. It seems to be that the only thing you're complaining about is that the MTA API is outputting errors into the console to let you know that you write bad code, and you're getting mad at MTA and Lua for it. It's your own fault. I can imagine you dereferencing a null pointer and complaining that you get a memory access violation but you willfully refuse to check whether the pointer is null before attempt to dereference because "it's not my fault the language is bad wah wah," or complaining that math is broken because you can't divide by 0. If you don't like it, you should just go back to PAWN and the only software that uses it - SAMP.
    1 point
  16. Isso depende. Qual distância vc considera perto? Você pode obter todos os jogadores online e usar uma condição para verificar a distância de cada um com você, se a distância dele for menor que tanto, ele está perto e é considerado, senão, está longe e é ignorado.
    1 point
  17. Yes it's time for some updates! But first don't forget to join our discord at: https://discord.gg/kwJ73GY Or check our forums here! As for the updates, here we go: Stay tuned for more updates!
    1 point
  18. Hello ol'sport! Thank you for your feedback & this car is a car model from GTA V. Join our discord here https://discord.gg/T8KH3Cq and the server director will give you the mod files, since he is the one that has them!
    1 point
  19. local recienEntrado = { } addEventHandler( "onPlayerJoin", getRootElement( ), function( ) recienEntrado[source] = true showChat( source, false ) addEventHandler( "onPlayerCommand", getRootElement( ) function( c ) if recienEntrado[source] == true and c == "showchat" then cancelEvent( ) end end ) end ) addEventHandler( "onPlayerLogin", getRootElement( ), function( ) if recienEntrado[source] == true then recienEntrado[source] = false showChat( source, true ) end end )
    1 point
  20. https://wiki.multitheftauto.com/wiki/GetPlayerIdleTime
    0 points
×
×
  • Create New...