Jump to content

Leaderboard

Popular Content

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

  1. 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
  2. local moneySuff = {"K", "M", "B", "T", "Q"} function convertMoney(cMoney) didConvert = 0 if not cMoney then return "?" end while cMoney / 1000 >= 1 do cMoney = cMoney / 1000 didConvert = didConvert + 1 end if didConvert > 0 then return "$" .. string.format("%.2f", cMoney) .. moneySuff[didConvert] else return "$" .. cMoney end end
    1 point
  3. 734: not getting a number. 10: is not managing to export 'item-system:giveItem' 83: counting players of a team that does not exist
    1 point
  4. show your code. or you can only use interpolateBetween
    1 point
  5. local text = "This is the dxtext" local charactersVisible = 10 text = string.sub(text, 1, charactersVisible) .. "..." iprint(text)
    1 point
  6. https://community.multitheftauto.com/index.php?p=resources&s=details&id=11265 ذا مود جاهز مسويه xXMADXx تعلم منو او مثل ما عطاك اوسكر
    1 point
  7. النور نورك اخي
    1 point
  8. engineLoadTXD engineRestoreModel دوس عليهم ويدخلوك صفحة الويكي
    1 point
  9. ابحث هنا https://community.multitheftauto.com/ اكتب joinquit او login
    1 point
  10. حبيب قلبي اقتاحاتك على راسي وسبق وعقبت على موضوع التصميم فوق اما بخصوص اعداد اللاعبين انا حبيت اصنع فارق بينبي وبين الاستضافات الثانيه+لو تلاحظ في شي اخر لو ركزت بالعروض بتحصل اني ايضا اعطي حسابات ماين كرافت مع اقل عرض حتى فهذا شي ما يطمن لذلك انا جيت بتقنيه وهي التجربه قبل الشراء بحيث انك كزائر يمديك تجرب السيرفر قبل لا تشريه وبالختام نورت الموضوع يعسل
    1 point
  11. مجرد تسمية لأسم الجدول لاغير .
    1 point
  12. وعليكم السلام ورحمه الله وبركاته يب هذي الطريقة الوحيدة - وممكن تسوي عليها فنكشن يجلب لك رتبه الحساب عشان يسهل ويختصر عليك الاكواد ..
    1 point
  13. In Episode 5 we cover how to use the ACL to build a basic staff system
    1 point
  14. Episode 4 is up! In this episode we discuss setting up authentication using MTA's built in authentication system.
    1 point
  15. Você quer dizer som do motor do carro? A função setWorldSoundEnabled pode desabilitar qualquer som do ambiente do GTA, e playSound3D toca um som personalizado.
    1 point
×
×
  • Create New...