Jump to content

Simple.

Members
  • Posts

    1,004
  • Joined

  • Days Won

    1

Everything posted by Simple.

  1. في البداية كنت احسبك تساعد نفسك
  2. local moneyAmmount = 200 function createDeathPickup ( totalammo, killer, killerweapon, bodypart ) x, y, z = getElementPosition ( source ) currentweapon = getPedWeapon ( source ) if currentweapon == 30 or currentweapon == 31 then wep = createPickup ( x, y, z, 2, currentweapon, _, totalammo ) end if getPlayerMoney ( source ) >= moneyAmmount then money = createPickup ( x, y, z, 3, moneyAmmount) takePlayerMoney ( source, moneyAmmount ) end end addEventHandler ( "onPlayerWasted", getRootElement(), createDeathPickup ) addEventHandler ( 'onPickupUse', resourceRoot, function ( player ) if source == wep then destroyElement ( wep ) wep = nil elseif source == money then destroyElement ( money ) money = nil end end ) مو مجرب
  3. سكايب نتفاهم live:9wz
  4. بدل PlayerElement إلى client
  5. كيف تحط اكاونت داتا للمود ؟؟؟
  6. جربت مايضبط , يمكن عشان ال setTimer يحط getAccountPlayer ( acc ) ويريح رآسه
  7. انا حطيت سورس في الفنكشنات لكن طلع لي خطاء يقول ان السورس = nil وحطيت getAccountPlayer ( acc )
  8. addEventHandler ( "onPlayerLogin",root, function ( _, acc ) setTimer ( function ( ) if ( getAccountData ( acc, "jailed" ) == true ) then randomJail = jTable[math.random(#jTable)] if ( randomJail ) then x,y,z = randomJail[2],randomJail[3],randomJail[4] int = randomJail[5] dim = randomJail[6] setElementInterior ( getAccountPlayer ( acc ), int ) setElementDimension ( getAccountPlayer ( acc ), dim ) setElementPosition ( getAccountPlayer ( acc ), x,y,z ) end end end, 1000, 1) end )
  9. السبب اول مايدخل السيرفر مايكون معه المنت داتا الجيل , استخدم اكاونت داتا بدال المنت داتا
  10. local Groups = { {'Console','صاحب السيرفر'}, {'Admin','ادمن#FFF090'}, --{'اسم القروب','التاج'}, } addEventHandler("onPlayerLogin", root,function () for _,v in ipairs ( Groups ) do if ( isObjectInACLGroup("user." .. getAccountName(getPlayerAccount(source)), aclGetGroup(v[1])) ) then setElementData ( root, "MASRIY",v[2]) return true end end end) addEventHandler("onPlayerLogout", root,function () setElementData ( root, "MASRIY",false) end)
  11. اكتب كود اللون مع التاج في الجدول
  12. يب يمديك إستبدل الكود هذا بسطر رقم 19 عشان يقبل اكواد الالوان dxDrawText(text, sx+2, sy+2, sx, sy, tocolor(R or 255, G or 255, B or 255, alpha or 255), (size or 1)-(distanceBetweenPoints / distance), font or "arial", "center", "center", _, _, _, true)
  13. ملف السيرفر فيه جدول تحط فيه اسم القروب والتاج local Groups = { {'Console','صاحب السيرفر'}, {'Admin','ادمن'}, --{'اسم القروب','التاج'}, } addEventHandler("onPlayerLogin", root,function () for _,v in ipairs ( Groups ) do if ( isObjectInACLGroup("user." .. getAccountName(getPlayerAccount(source)), aclGetGroup(v[1])) ) then setElementData ( root, "MASRIY",v[2]) return true end end end) addEventHandler("onPlayerLogout", root,function () setElementData ( root, "MASRIY",false) end)
  14. مثالك يدوخ ليه تنقز سطور نسيت تتحق ان القاتل , مايكون سورس
  15. شوف كود اوسكار هذا كلنت function dxDrawTextOnElement(TheElement,text,height,distance,R,G,B,alpha,size,font,checkBuildings,checkVehicles,checkPeds,checkDummies,seeThroughStuff,ignoreSomeObjectsForCamera,ignoredElement) local x, y, z = getElementPosition(TheElement) local x2, y2, z2 = getElementPosition(localPlayer) local distance = distance or 20 local height = height or 1 local checkBuildings = checkBuildings or true local checkVehicles = checkVehicles or false local checkPeds = checkPeds or false local checkObjects = checkObjects or true local checkDummies = checkDummies or true local seeThroughStuff = seeThroughStuff or false local ignoreSomeObjectsForCamera = ignoreSomeObjectsForCamera or false local ignoredElement = ignoredElement or nil if (isLineOfSightClear(x, y, z, x2, y2, z2, checkBuildings, checkVehicles, checkPeds , checkObjects,checkDummies,seeThroughStuff,ignoreSomeObjectsForCamera,ignoredElement)) then local sx, sy = getScreenFromWorldPosition(x, y, z+height) if(sx) and (sy) then local distanceBetweenPoints = getDistanceBetweenPoints3D(x, y, z, x2, y2, z2) if(distanceBetweenPoints < distance) then dxDrawText(text, sx+2, sy+2, sx, sy, tocolor(R or 255, G or 255, B or 255, alpha or 255), (size or 1)-(distanceBetweenPoints / distance), font or "arial", "center", "center") end end end end addEventHandler("onClientRender",root,function () dxDrawTextOnElement(localPlayer,getElementData ( root, "MASRIY" ) or 'none',1,20,0,0,255,255,1,"arial") end) وهذا سيرفر local Groups = { {'Console','صاحب السيرفر'}, {'Admin','ادمن'}, } addEventHandler("onPlayerLogin", root,function () for _,v in ipairs ( Groups ) do if ( isObjectInACLGroup("user." .. getAccountName(getPlayerAccount(source)), aclGetGroup(v[1])) ) then setElementData ( root, "MASRIY",v[2]) return true end end end) addEventHandler("onPlayerLogout", root,function () setElementData ( root, "MASRIY",false) end)
  16. addEventHandler("onClientRender", getRootElement(), function () for k,v in ipairs(getElementsByType("player")) do if getTeamName ( getPlayerTeam ( hitElement ) ) == 'Hasson' then if not v == localPlayer then dxDrawTextOnElement(v,"MASRIY",1,20,0,0,255,255,1,"arial") end end end end) function dxDrawTextOnElement(TheElement,text,height,distance,R,G,B,alpha,size,font,checkBuildings,checkVehicles,checkPeds,checkDummies,seeThroughStuff,ignoreSomeObjectsForCamera,ignoredElement) local x, y, z = getElementPosition(TheElement) local x2, y2, z2 = getElementPosition(localPlayer) local distance = distance or 20 local height = height or 1 local checkBuildings = checkBuildings or true local checkVehicles = checkVehicles or false local checkPeds = checkPeds or false local checkObjects = checkObjects or true local checkDummies = checkDummies or true local seeThroughStuff = seeThroughStuff or false local ignoreSomeObjectsForCamera = ignoreSomeObjectsForCamera or false local ignoredElement = ignoredElement or nil if (isLineOfSightClear(x, y, z, x2, y2, z2, checkBuildings, checkVehicles, checkPeds , checkObjects,checkDummies,seeThroughStuff,ignoreSomeObjectsForCamera,ignoredElement)) then local sx, sy = getScreenFromWorldPosition(x, y, z+height) if(sx) and (sy) then local distanceBetweenPoints = getDistanceBetweenPoints3D(x, y, z, x2, y2, z2) if(distanceBetweenPoints < distance) then dxDrawText(text, sx+2, sy+2, sx, sy, tocolor(R or 255, G or 255, B or 255, alpha or 255), (size or 1)-(distanceBetweenPoints / distance), font or "arial", "center", "center") end end end end هذا الكود كلنت بس , إذا كان في تيم اسمه حسون يطلع فوق راسه 'MAsiry' بس اتوقع راح يجي لاق إذا فيه لاعبين كثير بسبب انك مسوي داخل افنت اون كلنت رندر , لوب للاعبين , افرض فيه 70 لاعب
  17. onPlayerWasted -- Event givePlayerMoney
  18. كيف يعني تبيه حصري وضح لنا بالضبط وش الي تبيه عشان نعرف وش نعطيك
  19. بسالك ليه بين كل كود وكود مترين ؟ ترتيب يعني ؟ ﻻ ماله دخل بالترتيب ترتيب الاكواد يتم عن طريق ال تاب (اربع مسافات قدام الكود)ء انا داري لكن ابي افهم ليه الحوسه هذي
  20. بسالك ليه بين كل كود وكود مترين ؟ ترتيب يعني ؟
  21. addEventHandler -- onPlayerLogin isObjectInACLGroup aclGetGroup setPlayerTeam
×
×
  • Create New...