Jump to content

Leaderboard

Popular Content

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

  1. السلام عليكم روحمة الله وبركاته , كيفكم انشاء الله بخير ؟ اليوم جايب لكم مود جديد حماية حسابات الادمنية من السرقة او التسجيل من جهاز اخر شرح المود :- باختصار تحط حساب الاعب وسرياله في الفراغات وثم تضغط على تفعيل الحماية ويصير ما احد يقدر يسجل من الحساب غير السريال الا حطيته له مميزات المود :- اذا تم التسجيل في الحساب في سريال مختلف ياخذ كيك يمكنك وضع / ازالة الحماية للحساب يحفظ على قاعد بيانات سهولة الاستخدام ملاحظات :- كلمة الفتح من ف8 [ panel ] تفتح على السريال لتعديل كلمة فتح الوحة و السريال ملف [ Settings_Server.lua ] صورة المود :- واخيرا رابط التحميل : سبحان الله
    1 point
  2. شو فيك ع الراجل ي حبيبي ؟ , حسن أسلوبك مع الرجال شوي , اذا م تعرف تحسن اسلوبك لا ترد ع مواضيع م تعرف تساعد فيها. لا تتريق ع ناس في بداية برمجتها عشان م يتريقون عليك, لين انت كنت في اول البرمجه بالنسبة لصاحب الموضوع. اتمنى ان تقلي الخطأ في اي سطر عشان اعدله لك وابشر من عيني
    1 point
  3. local _wep ={} addEventHandler ( "onMarkerHit",myMarker,function (player) if getElementType(player) == "player" then if _wep[player] and isTimer(_wep[player]) then killTimer(_wep[player]) end _wep[player] = setTimer ( function(player) local Ammo = getPedTotalAmmo (player) if tonumber ( Ammo ) < 1000 then if isElement(player) then id = 30 --Weapon ID giveWeapon(player,id,100,true) --outputChatBox("You got "..getWeaponNameFromID(id).." weapon with "..Ammo.." ammo",player,0,255,0,true) end elseif isElement(player) then killTimer(_wep[player]) _wep[player] = nil --outputChatBox ('تم تعبئة الذخيرة',player,255,0,0,true) end end,1000,0,player) end end) جـرب كذا الكلام مرح يطلع لك
    1 point
  4. Seu painel precisa de acesso admin para funcionar. Na ACL Group "admin" coloque "resource.admin_pt-br". Faça isso pelo painel admin original ou então desligue o servidor, coloque manualmente seu painel admin no ACL.xml e depois inicie o servidor. Em relação ao erro, seu painel está reclamando que não tem acesso a permissão "aclGroupAddObject", portanto ele não consegue adicionar nenhum objeto nas ACL Groups.
    1 point
  5. there is a useful function called findRotation. use it to find the rotation between the object and the ped. Then getPedRotation or getElementRotation to get the rotation of the ped. After that you will just need to decrease the small angle from the big angle. So if rotation between an object and ped is 350 and the ped's rotation is 180 then he has to turn 350-180= 170 degrees.
    1 point
  6. انا بعرف اسوي ككلاسات عادي وعندي احتراف لسه بالموضوع بس القصة معقده شوي كونو الحسابات محفوظه على القاعدة بسوي طريقتي مشكور
    1 point
  7. 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
  8. أخوي دام انه قال سعره الرجال صامل على سعره انت مايحق ان يكون لك مانع له لأن في نهاية الفلوس فلوسه وهو الي بيصرف عليها .. وأظن انه قد فكر جيداً عن المبلغ المطلوب للمبرمجين عكس البقية الي يطلبون ومقابلهم جداً رخيص أو مقابل غير مادي وغير مستفيد منه - علعموم أظن انه الشخص الوحيد الي اعطى مبرمجين العرب دفعه ولو صغيره انهم يبرمجون لحاجة بمبلغ جيد ..
    1 point
  9. I'll be releasing new streamer on the 1st. Also, I've added some modified VCS neons to VC.
    1 point
  10. اما عاد ١٠٠ دولار تشتري سياره؟؟ اذا الف دولار ماتشتري سيكل.
    1 point
  11. ترا 100 دولار قليله.
    1 point
  12. القصد والفكره انك تصنع ملف لوضع المعلومات الغير مشفره عشان تسوي لود للملف. صححني اذا ماكانت هذي الطريقه الي تتبعها؟
    1 point
  13. function(hitElement, matchingDimension) if (isElement(hitElement)) and (getElementType (hitElement) == "player") and (getElementID (source) == "greenzoneColshape") then toggleControl (hitElement, "fire", false) toggleControl (hitElement, "next_weapon", false) toggleControl (hitElement, "previous_weapon", false) toggleControl (hitElement, "aim_weapon", false) toggleControl (hitElement, "vehicle_fire", false) showPlayerHudComponent (hitElement, "ammo", false) showPlayerHudComponent (hitElement, "weapon", false) triggerClientEvent (hitElement, "enableGodMode", hitElement) outputDebugString (getPlayerName(hitElement) .. " has entered the greenzone") end end) False يكون Jetpack كيف اجعل =========================================================================================== هاذا الكامل addEventHandler ("onResourceStart",getResourceRootElement(getThisResource()), function() local allGreenzones = getElementsByType ("radararea") for i,v in ipairs (allGreenzones) do local r,g,b,a = getRadarAreaColor (v) if (r == 0) and (g == 255) and (b == 0) and (a == 127) then local x,y = getElementPosition (v) local sx,sy = getRadarAreaSize (v) local col = createColCuboid (x,y, -50, sx,sy, 7500) setElementID (col, "greenzoneColshape") end end end) addEventHandler ("onColShapeHit", getRootElement(), function(hitElement, matchingDimension) if (isElement(hitElement)) and (getElementType (hitElement) == "player") and (getElementID (source) == "greenzoneColshape") then toggleControl (hitElement, "fire", false) toggleControl (hitElement, "next_weapon", false) toggleControl (hitElement, "previous_weapon", false) toggleControl (hitElement, "aim_weapon", false) toggleControl (hitElement, "vehicle_fire", false) showPlayerHudComponent (hitElement, "ammo", false) showPlayerHudComponent (hitElement, "weapon", false) triggerClientEvent (hitElement, "enableGodMode", hitElement) outputDebugString (getPlayerName(hitElement) .. " has entered the greenzone") end end) addEventHandler ("onColShapeLeave", getRootElement(), function(leaveElement, matchingDimension) if (getElementType (leaveElement) == "player") and (getElementID (source) == "greenzoneColshape") then toggleControl (leaveElement, "fire", true) toggleControl (leaveElement, "next_weapon", true) toggleControl (leaveElement, "previous_weapon", true) toggleControl (leaveElement, "aim_weapon", true) toggleControl (leaveElement, "vehicle_fire", true) showPlayerHudComponent (leaveElement, "ammo", true) showPlayerHudComponent (leaveElement, "weapon", true) triggerClientEvent (leaveElement, "disableGodMode", leaveElement) outputDebugString (getPlayerName(leaveElement) .. " has left the greenzone") end end) ================================================================== رابط المود > https://community.multitheftauto.com/index.php?p=resources&s=details&id=1287
    0 points
  14. Use the onVehicleStartEnter event.
    0 points
×
×
  • Create New...