Jump to content

Leaderboard

Popular Content

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

  1. * السلام عليكم ورحمة الله وبركاتة اليوم جيتكم بمود جديد واتوقع ماهو منشور من قبل ( م عمري شفتة بسيرفر )ء - مود القوانين مع مزايا 1 - امكانية اضافه او ازالة او تعديل القوانين من داخل السيرفر من دون الحاجة إلى فتح المود 2 - ازرار اضافة او ازالة او تعديل القوانين، تفتح فقط لمن سريالة داخل ملف ( settings ) 3 - خط خاص بالمود والقوانين 4 - اضافة كولمن يضهر فيه من قام بأضافة القانون 4 - لـتعديل الزر الخاص بـ فتح الوحة + السريالات، اتجةة لملف ( settings ) - الصور - هنا الواجةة الخاصة بالمود - هنا لوحة اضافة القوانين الجديدة - هنا الواجةة مره اخرى بعد اضافة قانون جديد - هنا لوحة تعديل القوانين - هنا الواجةة مرة اخرى بعد تعديل القانون - هنا زر حذف القانون - هنا الواجةة مرى اخرى بعد حذف القانون * رابط التحميل : https://community.multitheftauto.com/index.php?p=resources&s=details&id=15253 - وبالختام احب اشكر البطل الي شجعني وعلمني البرمجه @iMr.WiFi..! * ملاحظة هذا اول مود لي انشرة في المنتدى - الاهدائات * جميع اعضاء منتدى Mtasa
    3 points
  2. Salut, deschid un server de race si am nevoie de niste harti. Vreau DM, nu ma gandesc sa pun DD sau alte lucruri.
    1 point
  3. At the end of month I'll be releasing it also I'll be making a full wiki page on it. J Streamer 1 was just dedicated to streaming my custom maps but had no upfront external support for stuff like this. JS2 will include stuff such as ability to stream in / out objects load custom maps, and alot of other stuff that will be extremely useful for developers.
    1 point
  4. الي ضحكني بزياده انه حاط بالجدول سحب خمس ساعات ول طلعله سحب خمس ساعات راح يقول له تم سحب خمس ساعات ، مبرروك خخخهههههههههه
    1 point
  5. Not important, and createColRectangle is better. ماهو ضروري, والفنكشن الي حطه الاخ أحسن وأكثر دقة
    1 point
  6. اخوي دي يسموها تكسدات للشوارع وكدا بتلاقي كثير في النت مثل وفلتت النخيل والدائري وغيره كثير وتقدر انت تصممها من فوتشوب نفس ما انا اسوى MTA sa ابحث على النت اكتب زفلت النخيل MTA sa او زفلتت الدائري تقديري لك @MR.GNA7
    1 point
  7. local getDistanceBetweenPointAndSegment3D = function (pointX, pointY, pointZ, x1, y1, z1, x2, y2, z2) local A = pointX - x1 local B = pointY - y1 local C = pointZ - z1 -- local D = x2 - x1 local E = y2 - y1 local F = z2 - z1 -- local point = A * D + B * E + C * F local lenSquare = D * D + E * E + F * F local parameter = point / lenSquare local shortestX local shortestY local shortestZ if parameter < 0 then shortestX = x1 shortestY = y1 shortestZ = z1 elseif parameter > 1 then shortestX = x2 shortestY = y2 shortestZ = z2 else shortestX = x1 + parameter * D shortestY = y1 + parameter * E shortestZ = z1 + parameter * F end local distance = getDistanceBetweenPoints3D(pointX, pointY,pointZ, shortestX, shortestY,shortestZ) -- return distance end 3D version of this one: https://wiki.multitheftauto.com/wiki/GetDistanceBetweenPointAndSegment2D Useful for detecting if something is between 2 points.
    1 point
  8. Eh, you can't do onPlayerChat and addCommandHandler on the same function .. function pointsCommand (player, message, arg1) local tplayer = getPlayerFromName(arg1) or source local playerPoints = loadPlayerData (tplayer,"points") setTimer(outputChatBox,50,1,getPlayerName (tplayer) .. " #FF0000has " .. tostring(playerPoints) .. " points!",getRootElement(),255,0,0,true) end end addCommandHandler('points', pointsCommand) addEventHandler ("onPlayerChat",getRootElement(), function(message, mtype) message = split(message,32) if mtype == 0 then if message[1] == "!points" then pointsCommand(source, "!points", message[2]) end end end) And yes this needs full name, if you don't want that copy the function from some other script and insert it yourself
    1 point
  9. السلام عليكم ورحمة الله وبركاته أقدم اليوم إعتزالي التام, وتشرفت بمعرفتكم جميعاً رسالة إلى كل شخص غلطت عليه.. أعذرني 2012 - 2018 أخوكم / خالد
    0 points
  10. أعرف بهالشيء لكنها تعتبر أقرب الى لغة لكبر هالمكتبة ,.
    0 points
×
×
  • Create New...