Jump to content

#BrosS

Members
  • Posts

    2,102
  • Joined

  • Last visited

  • Days Won

    14

Everything posted by #BrosS

  1. @Turbo777 try this function getFixedName(player) if isElement(player) then local hisName = getPlayerName(player) if hisName then result = string.gsub(hisName, '#%x%x%x%x%x%x', '') if result then return result end end end end addEventHandler("onPlayerLogin", getRootElement(), function () local name = getFixedName(source) if isObjectInACLGroup("user." .. getAccountName(getPlayerAccount(source)), aclGetGroup("Admin")) then exports[getResourceName(resource)]:addNotification(root, name.." tulajdonos szolgálatba lépett!", "warning") elseif isObjectInACLGroup("user." .. getAccountName(getPlayerAccount(source)), aclGetGroup("Moderator")) then exports[getResourceName(resource)]:addNotification(root, name.." moderátor szolgálatba lépett!", "warning") elseif isObjectInACLGroup("user." .. getAccountName(getPlayerAccount(source)), aclGetGroup("SuperModerator")) then exports[getResourceName(resource)]:addNotification(root, name.." szupermoderátor szolgálatba lépett!", "warning") elseif isObjectInACLGroup("user." .. getAccountName(getPlayerAccount(source)), aclGetGroup("Modi")) then exports[getResourceName(resource)]:addNotification(root, name.." moderátor szolgálatba lépett!", "warning") elseif isObjectInACLGroup("user." .. getAccountName(getPlayerAccount(source)), aclGetGroup("Operator")) then exports[getResourceName(resource)]:addNotification(root, name.." operátor szolgálatba lépett!", "warning") elseif isObjectInACLGroup("user." .. getAccountName(getPlayerAccount(source)), aclGetGroup("zuker")) then exports[getResourceName(resource)]:addNotification(root, name.." moderátor szolgálatba lépett!", "warning") elseif isObjectInACLGroup("user." .. getAccountName(getPlayerAccount(source)), aclGetGroup("Adminseged")) then exports[getResourceName(resource)]:addNotification(root, name.." adminsegéd szolgálatba lépett!", "warning") end end )
  2. use the image as a shader well find a shader that looks like blur something , define it and dxDrawimage it
  3. local Marker = createMarker -- ماركر الاحتلال name = guiCreateProgressBar(0.05, 0.5, 0.15, 0.033, true) -- عدل الى احداثياتك addEventHandler ("onClientMarkerHit",root, function ( hitPlayer ) if hitPlayer == localPlayer then if (source == Marker) then guiSetVisible(name,true) guiProgressBarSetProgress(name, guiProgressBarGetProgress(name) + 1) if guiProgressBarGetProgress(name) == 100 then outputChatBox ( " اكتمل احتلال " ) guiSetVisible(name, false) givePlayerMoney(10000) end end end end ) addEventHandler ("onClientMarkerLeave",root, function ( LeavePlayer ) if LeavePlayer == localPlayer then if (source == Marker) then guiSetVisible(name,false) outputChatBox ( " غادرت الاحتلال " ) end end end ) جوال
  4. في رأيي ، تسوي السفينة الواحد يقدر يسوقها بفلوس ولمدة معينة ، مثلا 15 دقيقة ب 5 مليون 30 دقيقة ب عشر مليون وبعد مايخلص الوقت ترجع السفينة لمكانها ، ولو كمان يقدر يحارب بيها ض2 بالتوفيق (_)
  5. ممممممكككنن تفهمني ليه الداتا ؟ ؟؟؟؟؟؟!!!!!!!! هذا ماتحكو معه ؟ يعني انا بس
  6. use this scx,scy = guiGetScreenSize() function draw() dxDrawImage(0,0,scx,scy,"image.png") end
  7. لول وش تخبصو، عدل على لوحة تسجيل حقتك واعمل لما يسجل ضيف الانترو حقك
  8. عشان هيك قلنا له يسويها بالسكل
  9. outputChatBox اسهل وظيفة تعطيك سلاح، اي واحد يعرفها
  10. #BrosS

    CrossHair

    I'm not kiddin What is CrossHair
  11. #BrosS

    CrossHair

    what is crosshair ? Aiming icon idk :p
  12. تحتاج اقل خبرة بالسكل او قواعد البيانات
  13. https://community.multitheftauto.com/index.php?p=resources&s=list
  14. guieditor عمل لوحة الأدمن بدون lil_Toady السؤال اللي محيرني كيف قدر أول اصدار للعبة ماكان فيه لوحة أدمن حتى بعد الجيو اديتور ؟ ._. الفري روم ايضا
  15. i just tried it thing is change the command you can't use start or stop
  16. GUIEditor = { button = {} window = {} label = {} edit = {} } local markerLS = createMarker (1742.1099853516,-2287.8000488281,12.199999809265, "cylinder", 1.5, 120, 255, 216, 100 ) police = createBlip (1742.1099853516,-2287.8000488281,13.199999809265, 52 ) setBlipVisibleDistance(police , 300) GUIEditor.window[1] = guiCreateWindow(463, 333, 331, 447, "ATM", false) guiWindowSetSizable(GUIEditor.window[1], false) guiSetAlpha(GUIEditor.window[1], 0.82) guiSetProperty(GUIEditor.window[1], "CaptionColour", "FF259F1F") GUIEditor.label[1] = guiCreateLabel(114, 22, 138, 49, "CUA", false, GUIEditor.window[1]) guiSetFont(GUIEditor.label[1], "sa-header") GUIEditor.edit[1] = guiCreateEdit(10, 106, 302, 35, "", false, GUIEditor.window[1]) GUIEditor.label[2] = guiCreateLabel(15, 86, 185, 15, "your Banck blance", false, GUIEditor.window[1]) guiSetFont(GUIEditor.label[2], "default-bold-small") GUIEditor.label[3] = guiCreateLabel(25, 219, 185, 15, "Amount-->", false, GUIEditor.window[1]) guiSetFont(GUIEditor.label[3], "default-bold-small") GUIEditor.button[1] = guiCreateButton(25, 164, 108, 38, "Withdraw", false, GUIEditor.window[1]) guiSetFont(GUIEditor.button[1], "default-bold-small") guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFFFFFFF") GUIEditor.button[2] = guiCreateButton(194, 164, 108, 38, "Deposit", false, GUIEditor.window[1]) guiSetFont(GUIEditor.button[2], "default-bold-small") guiSetProperty(GUIEditor.button[2], "NormalTextColour", "FFFFFFFF") GUIEditor.edit[2] = guiCreateEdit(10, 244, 302, 35, "", false, GUIEditor.window[1]) GUIEditor.button[5] = guiCreateButton(106, 347, 121, 70, "Hack", false, GUIEditor.window[1]) guiSetFont(GUIEditor.button[5], "default-bold-small") guiSetProperty(GUIEditor.button[5], "NormalTextColour", "FFBE0000") GUIEditor.button[6] = guiCreateButton(251, 403, 71, 35, "Close", false, GUIEditor.window[1]) guiSetFont(GUIEditor.button[6], "default-bold-small") guiSetProperty(GUIEditor.button[6], "NormalTextColour", "FFFFFFFF") guiSetVisible (GUIEditor.window[1], false) Show = false function DXpanel() dxDrawRectangle(464, 368, 305, 415, tocolor(0, 0, 0, 191), true) dxDrawRectangle(465, 369, 304, 29, tocolor(0, 0, 0, 225), false) dxDrawText("Hack", 581, 369, 666, 398, tocolor(255, 255, 255, 255), 1.00, "bankgothic", "left", "top", false, false, true, false, false) dxDrawRectangle(578, 600, 81, 36, tocolor(0, 195, 9, 191), true) dxDrawText("OK", 593, 604, 642, 636, tocolor(255, 255, 255, 255), 1.00, "bankgothic", "left", "top", false, false, true, false, false) dxDrawRectangle(517, 646, 202, 68, tocolor(195, 0, 0, 191), true) dxDrawText("%5", 583, 656, 655, 705, tocolor(255, 255, 255, 255), 1.50, "bankgothic", "left", "top", false, false, true, false, false) dxDrawRectangle(464, 750, 305, 8, tocolor(255, 255, 255, 255), true) dxDrawText("Gafwa", 588, 755, 660, 783, tocolor(255, 255, 255, 255), 1.00, "bankgothic", "left", "top", false, false, true, false, false) dxDrawRectangle(465, 580, 304, 8, tocolor(255, 255, 255, 255), true) end addEventHandler("onClientMarkerHit",markerLS,--عند لمس الماركر المحدد function(hit)--وظيفة if localPlayer == hit then if getElementType(hit) == "player" then guiSetVisible(GUIEditor.window[1],true)--تفتح اللوحة showCursor(true) --نظهر الماوس --نهاية الوظيفة end -- نهاية end end )--نهاية قوس الحدث end) addEventHandler("onClientGUIClick",root, function () if ( source == GUIEditor.button[4] ) then -- حط الزر اللي تبيه يفتح الدي اكس addEventHandler("onClientRender",root,DXpanel) elseif ( source == GUIEditor.button[5] ) then guiSetVisible(GUIEditor.window[1],false) removeEventHandler("onClientRender",root, DXpanel) showCursor(false) Show = false end end
  17. مو أنت قلت بدي يفتحو مع بعض ؟ ._. خلاص فهمت ذذ ثواني
×
×
  • Create New...