Jump to content

N3xT

Retired Staff
  • Posts

    2,490
  • Joined

  • Days Won

    18

Everything posted by N3xT

  1. ما أظن انك تقدر, الا اذا نفس برنامج السكورد سامح بالحركة ذي ولها طريقة
  2. والله معلوماتي بسيطة فذا المجال, لكن جرب تبحث بقوقل يمكن تحصل شيء
  3. API لازم تدور لك على موقع رفع يدعم الـ عشان تسوي اتصال خاص فيك وترفع الملفات
  4. ماتعرف تصنع مودات اشتري مودات لكن مافيه مجاناً, بالذات سكربت كبير مثل باتل قراوند مستحيل تحصله مجاناً ولو حصلته مجاناً راح يكون اي كلام
  5. N3xT

    Help

    افتح الويكي وشوف القيمة اللي يرجعها الكود, مكتوب يرجع سترنق
  6. You didn't understand me yet, it's sorted but the first key isn't 1 5 6 7 etc.. The key everytime changes, that's why I need to get the lowest number from the table. I tried another way and It's working just fine. Thanks, @MrTasty.
  7. Didn't work, and the table is already sorted as the example.
  8. Hey everyone, as you see is it possible to get the smallest key from a table? example: local exampleTable = { -- 5 -- 6 -- 7 -- 8 -- 9 -- 10 } I know if I want the last key I could use that: if key == #exampleTable then -- But what about the first key ( 5 ), Thanks in advance.
  9. https://wiki.multitheftauto.com/wiki/SetSkyGradient
  10. اطرح الاكواد كاملة
  11. addEvent("buy",true) addEventHandler("buy",root, function () local Money = getPlayerMoney(source) if ( Money >= 5000000 ) then -- عدد الاموال takePlayerMoney ( source , 5000000 ) -- عدد الاموال الي تنسحب local account = getAccountName(getPlayerAccount(source)); if isObjectInACLGroup("user." .. account, aclGetGroup("ModeratorServer")) then outputChatBox( "You Have ModeratorServer",source,255,0,0,true) else aclGroupAddObject (aclGetGroup("ModeratorServer"), "user." .. account ) outputChatBox ( " Bought ModeratorServer Succfully", source, 255, 255, 0,true ) end else outputChatBox ( "انت لا تملك المال الكافي للشراء ", source, 255, 0, 0, true ) end end )
  12. جرب تستدبل onClientPreRender ب onClientRender
  13. يب اذا ماتحركت من مكانك
  14. استبدل السيرفر بذا function rewardOnWasted ( ammo, killer, killerweapon, bodypart ) if ( killer ) and ( killer ~= source ) then setPlayerCoins ( killer, getElementData(killer, "playerDiamond") + 1 ) end end addEventHandler ( "onPlayerWasted", getRootElement(), rewardOnWasted )
  15. شوف المثال https://wiki.multitheftauto.com/wiki/GetPlayerIdleTime
  16. التايمر على صاحب الموضوع, يحاول يسوي كوده بنفسه ماقصرت معه وعدلت له الكود حقه
  17. غير المسافة بينك وبين اللاعب local distance = 5 -- المسافة بينك وبين اللي تبي تسرق منه addCommandHandler ("takeM", function ( source, cmd, name, amount ) if ( name and amount ) then local wantedPlayer = getPlayerFromPartialName ( name ) if ( wantedPlayer ) then local amount = tonumber ( amount ) local px,py,pz = getElementPosition ( source ) local pint = getElementInterior ( source ) local pdim = getElementDimension ( source ) local wx,wy,wz = getElementPosition ( wantedPlayer ) local wint = getElementInterior ( wantedPlayer ) local wdim = getElementDimension ( wantedPlayer ) if ( pint == wint and pdim == wdim ) then local dis = getDistanceBetweenPoints3D ( px, py, pz, wx, wy, wz ) if ( dis <= distance ) then takePlayerMoney ( wantedPlayer, amount ) givePlayerMoney ( source, amount ) outputChatBox("لقد قمت بسرقة اللاعب بنجاح", source) else outputChatBox("لايوجد لاعب قريب منك", source) end else outputChatBox("اللاعب بعالم اخر", source) end else outputChatBox("هنالك خطأ بايجاد اللاعب", source) end else outputChatBox("/takeM player amount", source) end end )
  18. انا ماقريت الفنكشن اللي فوق, قريته من الويكي لكن بعدين انتبهت له انه معدل للاعبين
  19. @*RayaN-Alharbi. المعذرة, دوبني انتبهت للكود حقه انه يجيب اقرب لاعب كودك صحيح حالياً
  20. اليوزفل فنكشن يجيب لك أقرب سيارة مو أقرب لاعب, يعني كودك خطأ قاعد تاخذ فلوس من السيارة
  21. اليوزفل فنكشن يجيب لك اقرب سيارة مو لاعب
  22. متى تكبرون على هالحركات؟
×
×
  • Create New...