Jump to content

HUNGRY:3

Members
  • Posts

    395
  • Joined

  • Last visited

Everything posted by HUNGRY:3

  1. HUNGRY:3

    [HELP] Please

    function giveSomeoneMoney(player, cmd, target, amount) if target then if amount then local money = getPlayerMoney(player) local targetplayer = getPlayerFromParticalName(target) local r,g,b = getPlayerNametagColor(player) amount = tonumber(amount) if targetplayer then if not (targetplayer == player) then if money >= amount and amount > 0 then givePlayerMoney(targetplayer, amount) takePlayerMoney(player, amount) if getElementData(player, "lang") == "EN" then outputChatBox("#0044FF[PAY] #FFFFFFPlayer "..getPlayerName(player).." #FFFFFFsent #FF0000["..tostring(amount).."] #FFFFFFPoints to player "..getPlayerName(targetplayer), getRootElement(), 255, 255, 255, true) else outputChatBox("#0044FF[PAY] #FFFFFFTEST "..getPlayerName(player).." #FFFFFFtest #FF0000["..tostring(amount).."] #FFFFFFtest test "..getPlayerName(targetplayer), getRootElement(), 255, 255, 255, true) end else outputChatBox("#0044FF[PAY] #FFFFFFIncorrectly entered amount", player, 255, 255, 255, true) end else outputChatBox("#0044FF[PAY] #FFFFFFYou cannot Points yourself!", player, 255, 255, 255, true) end else outputChatBox("#0044FF[PAY] #FF0000Player not found", player, 255, 255, 255, true) end else outputChatBox("#0044FF[PAY] #FFFFFFUsage: /pay [Name] [Points]", player, 255, 255, 255, true) end else outputChatBox("#0044FF[PAY] #FFFFFFUsage: /pay [Name] [Points]", player, 255, 255, 255, true) end end addCommandHandler("pay", giveSomeoneMoney) function getPlayerFromParticalName(thePlayerName) local thePlayer = getPlayerFromName(thePlayerName) if thePlayer then return thePlayer end for _,thePlayer in ipairs(getElementsByType("player")) do if string.find(string.gsub(getPlayerName(thePlayer):lower(),"#%x%x%x%x%x%x", ""), thePlayerName:lower(), 1, true) then return thePlayer end end return false end show code that set the data "en"
  2. HUNGRY:3

    [HELP] Please

    Can you show full code
  3. You're on the wrong place mate, this isn't kindergarten. even in kindergarted they don't give free ones try this: https://community.multitheftauto.com/in ... ls&id=9313
  4. isObjectInACLGroup is server side so does getAccountName , getPlayerAccount and aclGetGroup so you should trigger event to check if he's in acl
  5. function addAddonInfo ( name, description ) return call ( getResourceFromName( "DayZ" ), "addAddonInfo", name, description ) end addAddonInfo ( "GlobalChat", "" )
  6. Better way local sx,sy = guiGetScreenSize () local x,y = (sx/1280),(sy/768) lp = getLocalPlayer() function skills () if getElementData(lp,"skillsDX") == true then dxDrawRectangle(x*381, y*196, x*521, y*373, tocolor(0, 0, 0, 100), false) end end addEventHandler("onClientRender",root,skills) function page1 () if getElementData(lp,"skillsDX") == true then dxDrawText("Weapon Skills", x*528, y*198, x*761, y*223, tocolor(255, 255, 255, 255), x*1.00, "bankgothic", "left", "top", false, false, false, false, false) dxDrawText("Colt-45", x*391, y*265, x*481, y*283, tocolor(255, 255, 255, 255), x*0.70, "bankgothic", "left", "top", false, false, false, false, false) dxDrawText("Desert-Eagle", x*390, y*325, x*541, y*344, tocolor(255, 255, 255, 255), x*0.70, "bankgothic", "left", "top", false, false, false, false, false) dxDrawText("Swan-Off", x*391, y*385, x*497, y*403, tocolor(255, 255, 255, 255), x*0.70, "bankgothic", "left", "top", false, false, false, false, false) dxDrawText("Shotgun", x*391, y*445, x*492, y*463, tocolor(255, 255, 255, 255), x*0.70, "bankgothic", "left", "top", false, false, false, false, false) dxDrawText("Spaz-12", x*391, y*505, x*497, y*523, tocolor(255, 255, 255, 255), x*0.70, "bankgothic", "left", "top", false, false, false, false, false) dxDrawLine(x*743, y*264, x*743, y*283, tocolor(0, 0, 0, 255), x*1, false) dxDrawLine(x*860, y*264, x*743, y*264, tocolor(0, 0, 0, 255), x*1, false) dxDrawLine(x*743, y*283, x*860, y*283, tocolor(0, 0, 0, 255), x*1, false) dxDrawLine(x*860, y*283, x*860, y*264, tocolor(0, 0, 0, 255), x*1, false) dxDrawRectangle(x*744, y*265, x*116, y*18, tocolor(0, 0, 0, 100), false) dxDrawLine(x*743, y*324, x*743, y*343, tocolor(0, 0, 0, 255), x*1, false) dxDrawLine(x*860, y*324, x*743, y*324, tocolor(0, 0, 0, 255), x*1, false) dxDrawLine(x*743, y*343, x*860, y*343, tocolor(0, 0, 0, 255), x*1, false) dxDrawLine(x*860, y*343, x*860, y*324, tocolor(0, 0, 0, 255), x*1, false) dxDrawRectangle(x*744, y*325, x*116, y*18, tocolor(0, 0, 0, 100), false) dxDrawLine(x*743, y*384, x*743, y*403, tocolor(0, 0, 0, 255), x*1, false) dxDrawLine(x*860, y*384, x*743, y*384, tocolor(0, 0, 0, 255), x*1, false) dxDrawLine(x*743, y*403, x*860, y*403, tocolor(0, 0, 0, 255), x*1, false) dxDrawLine(x*860, y*403, x*860, y*384, tocolor(0, 0, 0, 255), x*1, false) dxDrawRectangle(x*744, y*385, x*116, y*18, tocolor(0, 0, 0, 100), false) dxDrawLine(x*743, y*444, x*743, y*463, tocolor(0, 0, 0, 255), x*1, false) dxDrawLine(x*860, y*444, x*743, y*444, tocolor(0, 0, 0, 255), x*1, false) dxDrawLine(x*743, y*463, x*860, y*463, tocolor(0, 0, 0, 255), x*1, false) dxDrawLine(x*860, y*463, x*860, y*444, tocolor(0, 0, 0, 255), x*1, false) dxDrawRectangle(x*744, y*445, x*116, y*18, tocolor(0, 0, 0, 100), false) dxDrawLine(x*743, y*504, x*743, y*523, tocolor(0, 0, 0, 255), x*1, false) dxDrawLine(x*860, y*504, x*743, y*504, tocolor(0, 0, 0, 255), x*1, false) dxDrawLine(x*743, y*523, x*860, y*523, tocolor(0, 0, 0, 255), x*1, false) dxDrawLine(x*860, y*523, x*860, y*504, tocolor(0, 0, 0, 255), x*1, false) dxDrawRectangle(x*744, y*505, x*116, y*18, tocolor(0, 0, 0, 100), false) dxDrawText("Next", x*825, y*547, x*880, y*566, tocolor(255, 255, 255, 255), x*0.70, "bankgothic", "left", "top", false, false, false, false, false) end end addEventHandler("onClientRender",root,page1) function close() if not getElementData(lp,"skillsDX") == true then setElementData(lp,"skillsDX",true) else setElementData(lp,"skillsDX",false) end end addCommandHandler("skills",close) now open and close with /skills
  7. i agree with Myths nasser is just stealing scripts
  8. Sorry this did not work. As soon I started the resource the browser immediately opened. I want to be able to start the resource, then open the browser with a command. lol copy and paste again
  9. --In order to render the browser on the full screen, we need to know the dimensions. local screenWidth, screenHeight = guiGetScreenSize() --Let's create a new browser in remote mode. local window = guiCreateWindow(0, 0, screenWidth, screenHeight, "Webbrowser", false) local browser = guiCreateBrowser(0, 0, 800, 600, false, false, false, window) guiSetVisible(window,false) -- The event onClientBrowserCreated will be triggered, after the browser has been initialized. -- After this event has been triggered, we will be able to load our URL local theBrowser = guiGetBrowser(browser) -- Get the browser element from gui-browser addEventHandler("onClientBrowserCreated", theBrowser, function() -- After the browser has been initialized, we can load [url=https://www.youtube.com]https://www.youtube.com[/url] loadBrowserURL(source, "https://www.youtube.com") end ) function open() guiSetVisible(window,true) end addCommandHandler("browser",open)
  10. guiSetAlpha(YourButtonName,0.00)
  11. some proofs that u are leaker bank rob.lua for i=1, 4 do START_DOUBLE_SIDED_TRANSACTION(0) createObject ( 14602, 469.5, -2543.7998046875, 57, 0, 0, 299.99267578125 ) createObject ( 14596, 455.19921875, -2549.2998046875, 62.330013275146, 0, 0, 300.55297851563 ) createObject ( 14576, 467.5, -2537.6103515625, 47.230007171631, 0, 0, 119.99267578125 ) createObject ( 4694, 1412.1999511719, -972.20001220703, 55.200000762939, 0, 0, 356 ) createObject ( 1714, 454.60000610352, -2528.8999023438, 51.599998474121, 0, 0, 23.9951171875 ) createObject ( 14594, 454.69921875, -2517.5, 57.430000305176, 0, 0, 119.99267578125 ) createObject ( 942, 469.7998046875, -2536, 48.900001525879, 0, 0, 351.99645996094 ) createObject ( 922, 473.10000610352, -2531.3000488281, 47.299999237061, 0, 0, 321.99719238281 ) createObject ( 1715, 479.29998779297, -2532.1999511719, 51.599998474121, 0, 0, 300 ) createObject ( 1715, 480.79998779297, -2534.8000488281, 51.599998474121, 0, 0, 300 ) createObject ( 2278, 556.5, -2573.1000976563, 27.200000762939 ) createObject ( 1502, 475, -2525.8000488281, 57.419998168945, 0, 0, 297.99267578125 ) createObject ( 1502, 474.39999389648, -2526.1000976563, 63.25, 0, 0, 299.8876953125 ) createObject ( 3761, 481.19921875, -2519.599609375, 65.199996948242, 0, 0, 31.997680664063 ) createObject ( 1892, 467.79998779297, -2541.8000488281, 51.599998474121, 0, 0, 29.998168945313 ) createObject ( 2198, 480.39999389648, -2535.5, 51.599998474121, 0, 0, 120.65832519531 ) createObject ( 2198, 479, -2533.2998046875, 51.599998474121, 0, 0, 119.66357421875 ) createObject ( 638, 479.10000610352, -2539, 52.299999237061, 0, 0, 119.99813842773 ) createObject ( 2190, 449.60000610352, -2533.1000976563, 52.599998474121, 0, 0, 200 ) createObject ( 2773, 465.89999389648, -2545.1000976563, 52.200000762939, 0, 0, 205.99816894531 ) createObject ( 2773, 470.099609375, -2540.5, 52.200000762939, 0, 0, 119.99813842773 ) createObject ( 2190, 455.10000610352, -2530, 52.599998474121, 0, 0, 200 ) createObject ( 2773, 466.3994140625, -2542.599609375, 52.200000762939, 0, 0, 119.99816894531 ) createObject ( 2190, 464.60000610352, -2524.5, 52.599998474121, 0, 0, 200 ) createObject ( 2773, 472.70001220703, -2541.1999511719, 52.200000762939, 0, 0, 33.998138427734 ) createObject ( 2190, 470.29998779297, -2521.3000488281, 52.599998474121, 0, 0, 200 ) createObject ( 9819, 447, -2529.599609375, 64.099998474121, 0, 0, 209.99816894531 ) createObject ( 2186, 463.79998779297, -2521.1999511719, 51.599998474121, 0, 0, 30 ) createObject ( 2202, 451.70001220703, -2528.1999511719, 51.799999237061, 0, 0, 30 ) createObject ( 1715, 448.39999389648, -2530.8999023438, 63.200000762939 ) createObject ( 1715, 446.79998779297, -2528.6000976563, 63.299999237061, 0, 0, 300 ) createObject ( 14597, 448.7978515625, -2531.26171875, 71.035003662109, 0, 0, 299.99816894531 ) createObject ( 3761, 477.79998779297, -2521.8000488281, 65.300003051758, 0, 0, 31.997680664063 ) createObject ( 3761, 473.20001220703, -2514.3000488281, 65.199996948242, 0, 0, 31.997680664063 ) createObject ( 3761, 476.10000610352, -2512.6000976563, 65.199996948242, 0, 0, 31.997680664063 ) createObject ( 1704, 466, -2541.3999023438, 63.200000762939, 0, 0, 180 ) createObject ( 1704, 465.3994140625, -2537.7998046875, 63.200000762939 ) createObject ( 2949, 447.39999389648, -2515.6000976563, 63.299999237061, 0, 0, 211.99499511719 ) createObject ( 14595, 463.599609375, -2533.3994140625, 67.199996948242, 0, 0, 300.55297851563 ) createObject ( 2198, 444.5, -2540.6999511719, 69, 0, 0, 298.99816894531 ) createObject ( 2198, 443.60000610352, -2539.1000976563, 69, 0, 0, 298.99291992188 ) createObject ( 2198, 441.10000610352, -2544.1000976563, 69, 0, 0, 119.99813842773 ) createObject ( 2198, 461.60000610352, -2536.3000488281, 69, 0, 0, 119.99813842773 ) createObject ( 2198, 460.70001220703, -2534.6999511719, 69, 0, 0, 119.99813842773 ) createObject ( 2198, 464.10000610352, -2531.5, 69, 0, 0, 298.99291992188 ) createObject ( 2198, 460.20001220703, -2524.8000488281, 69, 0, 0, 298.99291992188 ) createObject ( 2198, 457.70001220703, -2529.5, 69, 0, 0, 119.99813842773 ) createObject ( 2198, 456.79998779297, -2527.8999023438, 69, 0, 0, 119.99816894531 ) createObject ( 2186, 452.20001220703, -2525.5, 69, 0, 0, 30 ) createObject ( 2186, 449.20001220703, -2543.3999023438, 69, 0, 0, 209.99816894531 ) createObject ( 2186, 455.60000610352, -2532.3000488281, 69, 0, 0, 29.998168945313 ) createObject ( 2198, 437.29998779297, -2537.1999511719, 69.099998474121, 0, 0, 119.99816894531 ) createObject ( 2186, 445.10000610352, -2536.8999023438, 69, 0, 0, 209.99816894531 ) createObject ( 2198, 439.70001220703, -2532.5, 69, 0, 0, 298.99291992188 ) createObject ( 2198, 440.60000610352, -2534.1999511719, 69.099998474121, 0, 0, 298.99291992188 ) createObject ( 14595, 463.599609375, -2533.3994140625, 67.199996948242, 0, 0, 300.55297851563 ) createObject ( 2949, 430.69921875, -2515.7998046875, 57.430000305176, 0, 0, 115.99914550781 ) createObject ( 2024, 446.5, -2504.7998046875, 57.400001525879 ) createObject ( 1704, 446.39999389648, -2502.6999511719, 57.400001525879, 0, 0, 358 ) createObject ( 1704, 447.3994140625, -2505.8994140625, 57.400001525879, 0, 0, 179.99450683594 ) createObject ( 1704, 445.10000610352, -2504.6000976563, 57.400001525879, 0, 0, 85.995483398438 ) createObject ( 2206, 461, -2527.599609375, 51.599998474121, 0.999755859375, 0, 207.99865722656 ) createObject ( 1714, 459.8994140625, -2527.2998046875, 51.599998474121, 0, 0, 19.9951171875 ) createObject ( 1714, 449.29998779297, -2531.8000488281, 51.599998474121, 0, 0, 23.994140625 ) createObject ( 1714, 464.20001220703, -2523.1999511719, 51.599998474121, 0, 0, 33.994140625 ) createObject ( 1714, 470, -2519.8999023438, 51.599998474121, 0, 0, 33.99169921875 ) createObject ( 3761, 462.5, -2498.8999023438, 59.400001525879, 0, 0, 302 ) createObject ( 3761, 468.8994140625, -2499, 59.400001525879, 0, 0, 297.99865722656 ) createObject ( 3761, 466.5, -2504.7998046875, 59.400001525879, 0, 0, 297.99865722656 ) createObject ( 2991, 481.39999389648, -2515.8000488281, 58.099998474121, 0, 0, 308 ) createObject ( 2991, 478.099609375, -2512.099609375, 58.099998474121, 0, 0, 329.99633789063 ) createObject ( 2973, 473.29998779297, -2518.8999023438, 57.400001525879 ) createObject ( 2949, 471.39999389648, -2536.1000976563, 57.440002441406, 0, 0, 29.997680664063 ) createObject ( 2024, 463.89999389648, -2540, 57.400001525879, 0, 0, 6 ) createObject ( 1704, 465.10000610352, -2540.8999023438, 57.400001525879, 0, 0, 185.99450683594 ) createObject ( 1704, 466.20001220703, -2539, 57.400001525879, 0, 0, 271.99353027344 ) createObject ( 2024, 465.29998779297, -2540, 63.200000762939, 0, 0, 5.99853515625 ) createObject ( 2001, 472.10000610352, -2538.5, 63.200000762939 ) createObject ( 2001, 461.69921875, -2538.8994140625, 63.200000762939 ) createObject ( 1704, 474.79998779297, -2539.8000488281, 51.599998474121, 0, 0, 122 ) createObject ( 1704, 473.39999389648, -2537.3999023438, 51.599998474121, 0, 0, 121.99768066406 ) createObject ( 2921, 460.20001220703, -2539.8000488281, 42.5, 0, 0, 200 ) createObject ( 2922, 461.70001220703, -2542.3999023438, 40.900001525879, 0, 0, 301.5 ) createObject ( 2886, 461.70001220703, -2542.3999023438, 41.299999237061, 0, 0, 122 ) createObject ( 5302, 452.29998779297, -2548.6000976563, 56.19998550415, 0, 122, 29.998168945313 ) createObject ( 5302, 459.5, -2547.1000976563, 55, 0, 90, 29.998168945313 ) createObject ( 5302, 477, -2556.5, 52, 0, 0, 299.99816894531 ) createObject ( 2949, 441.70001220703, -2520.3000488281, 69.099998474121, 0, 0, 119.99813842773 ) createObject ( 2949, 439.29998779297, -2524.6999511719, 57.400001525879, 0, 0, 29.999114990234 ) createObject ( 2949, 440.69921875, -2510.099609375, 57.400001525879, 0, 0, 119.99816894531 ) createObject ( 5302, 458, -2545.3000488281, 55, 0, 90, 29.998168945313 ) createObject ( 5302, 455.79998779297, -2546.8000488281, 55, 0, 90, 29.998168945313 ) createObject ( 5302, 457.20001220703, -2548, 55, 0, 90, 29.998168945313 ) createObject ( 2949, 456.2998046875, -2501.19921875, 57.5, 0, 0, 119.99816894531 ) createObject ( 5302, 457.19921875, -2548, 55, 0, 90, 29.998168945313 ) createObject ( 1671, 459.79998779297, -2525.6000976563, 69.5, 0, 0, 140 ) createObject ( 1671, 437.29998779297, -2536.1999511719, 69.5, 0, 0, 315.99877929688 ) createObject ( 1671, 457, -2526.5, 69.5, 0, 0, 109.99572753906 ) createObject ( 1671, 457.69921875, -2528.5, 69.5, 0, 0, 309.99572753906 ) createObject ( 1671, 439.20001220703, -2533.3000488281, 69.5, 0, 0, 31.994262695313 ) createObject ( 1671, 440.5, -2535, 69.5, 0, 0, 131.9921875 ) createObject ( 1671, 463.89999389648, -2532.1999511719, 69.5, 0, 0, 131.98977661133 ) createObject ( 1671, 461.70001220703, -2535.6000976563, 69.5, 0, 0, 331.98974609375 ) createObject ( 1671, 441, -2543.1000976563, 69.5, 0, 0, 303.98486328125 ) createObject ( 1671, 460.69921875, -2533.7998046875, 69.599998474121, 0, 0, 303.98071289063 ) createObject ( 1671, 443.5, -2540.1000976563, 69.5, 0, 0, 105.9807434082 ) createObject ( 1671, 444.10000610352, -2541.6999511719, 69.5, 0, 0, 155.98071289063 ) createObject ( 5302, 479.39999389648, -2524.1000976563, 48, 0, 0, 300 ) END_DOUBLE_SIDED_TRANSACTION() end csg bankrob.lua for i=1, 4 do START_DOUBLE_SIDED_TRANSACTION(0) createObject ( 14602, 469.5, -2543.7998046875, 57, 0, 0, 299.99267578125 ) createObject ( 14596, 455.19921875, -2549.2998046875, 62.330013275146, 0, 0, 300.55297851563 ) createObject ( 14576, 467.5, -2537.6103515625, 47.230007171631, 0, 0, 119.99267578125 ) createObject ( 4694, 1412.1999511719, -972.20001220703, 55.200000762939, 0, 0, 356 ) createObject ( 1714, 454.60000610352, -2528.8999023438, 51.599998474121, 0, 0, 23.9951171875 ) createObject ( 14594, 454.69921875, -2517.5, 57.430000305176, 0, 0, 119.99267578125 ) createObject ( 942, 469.7998046875, -2536, 48.900001525879, 0, 0, 351.99645996094 ) createObject ( 922, 473.10000610352, -2531.3000488281, 47.299999237061, 0, 0, 321.99719238281 ) createObject ( 1715, 479.29998779297, -2532.1999511719, 51.599998474121, 0, 0, 300 ) createObject ( 1715, 480.79998779297, -2534.8000488281, 51.599998474121, 0, 0, 300 ) createObject ( 2278, 556.5, -2573.1000976563, 27.200000762939 ) createObject ( 1502, 475, -2525.8000488281, 57.419998168945, 0, 0, 297.99267578125 ) createObject ( 1502, 474.39999389648, -2526.1000976563, 63.25, 0, 0, 299.8876953125 ) createObject ( 3761, 481.19921875, -2519.599609375, 65.199996948242, 0, 0, 31.997680664063 ) createObject ( 1892, 467.79998779297, -2541.8000488281, 51.599998474121, 0, 0, 29.998168945313 ) createObject ( 2198, 480.39999389648, -2535.5, 51.599998474121, 0, 0, 120.65832519531 ) createObject ( 2198, 479, -2533.2998046875, 51.599998474121, 0, 0, 119.66357421875 ) createObject ( 638, 479.10000610352, -2539, 52.299999237061, 0, 0, 119.99813842773 ) createObject ( 2190, 449.60000610352, -2533.1000976563, 52.599998474121, 0, 0, 200 ) createObject ( 2773, 465.89999389648, -2545.1000976563, 52.200000762939, 0, 0, 205.99816894531 ) createObject ( 2773, 470.099609375, -2540.5, 52.200000762939, 0, 0, 119.99813842773 ) createObject ( 2190, 455.10000610352, -2530, 52.599998474121, 0, 0, 200 ) createObject ( 2773, 466.3994140625, -2542.599609375, 52.200000762939, 0, 0, 119.99816894531 ) createObject ( 2190, 464.60000610352, -2524.5, 52.599998474121, 0, 0, 200 ) createObject ( 2773, 472.70001220703, -2541.1999511719, 52.200000762939, 0, 0, 33.998138427734 ) createObject ( 2190, 470.29998779297, -2521.3000488281, 52.599998474121, 0, 0, 200 ) createObject ( 9819, 447, -2529.599609375, 64.099998474121, 0, 0, 209.99816894531 ) createObject ( 2186, 463.79998779297, -2521.1999511719, 51.599998474121, 0, 0, 30 ) createObject ( 2202, 451.70001220703, -2528.1999511719, 51.799999237061, 0, 0, 30 ) createObject ( 1715, 448.39999389648, -2530.8999023438, 63.200000762939 ) createObject ( 1715, 446.79998779297, -2528.6000976563, 63.299999237061, 0, 0, 300 ) createObject ( 14597, 448.7978515625, -2531.26171875, 71.035003662109, 0, 0, 299.99816894531 ) createObject ( 3761, 477.79998779297, -2521.8000488281, 65.300003051758, 0, 0, 31.997680664063 ) createObject ( 3761, 473.20001220703, -2514.3000488281, 65.199996948242, 0, 0, 31.997680664063 ) createObject ( 3761, 476.10000610352, -2512.6000976563, 65.199996948242, 0, 0, 31.997680664063 ) createObject ( 1704, 466, -2541.3999023438, 63.200000762939, 0, 0, 180 ) createObject ( 1704, 465.3994140625, -2537.7998046875, 63.200000762939 ) createObject ( 2949, 447.39999389648, -2515.6000976563, 63.299999237061, 0, 0, 211.99499511719 ) createObject ( 14595, 463.599609375, -2533.3994140625, 67.199996948242, 0, 0, 300.55297851563 ) createObject ( 2198, 444.5, -2540.6999511719, 69, 0, 0, 298.99816894531 ) createObject ( 2198, 443.60000610352, -2539.1000976563, 69, 0, 0, 298.99291992188 ) createObject ( 2198, 441.10000610352, -2544.1000976563, 69, 0, 0, 119.99813842773 ) createObject ( 2198, 461.60000610352, -2536.3000488281, 69, 0, 0, 119.99813842773 ) createObject ( 2198, 460.70001220703, -2534.6999511719, 69, 0, 0, 119.99813842773 ) createObject ( 2198, 464.10000610352, -2531.5, 69, 0, 0, 298.99291992188 ) createObject ( 2198, 460.20001220703, -2524.8000488281, 69, 0, 0, 298.99291992188 ) createObject ( 2198, 457.70001220703, -2529.5, 69, 0, 0, 119.99813842773 ) createObject ( 2198, 456.79998779297, -2527.8999023438, 69, 0, 0, 119.99816894531 ) createObject ( 2186, 452.20001220703, -2525.5, 69, 0, 0, 30 ) createObject ( 2186, 449.20001220703, -2543.3999023438, 69, 0, 0, 209.99816894531 ) createObject ( 2186, 455.60000610352, -2532.3000488281, 69, 0, 0, 29.998168945313 ) createObject ( 2198, 437.29998779297, -2537.1999511719, 69.099998474121, 0, 0, 119.99816894531 ) createObject ( 2186, 445.10000610352, -2536.8999023438, 69, 0, 0, 209.99816894531 ) createObject ( 2198, 439.70001220703, -2532.5, 69, 0, 0, 298.99291992188 ) createObject ( 2198, 440.60000610352, -2534.1999511719, 69.099998474121, 0, 0, 298.99291992188 ) createObject ( 14595, 463.599609375, -2533.3994140625, 67.199996948242, 0, 0, 300.55297851563 ) createObject ( 2949, 430.69921875, -2515.7998046875, 57.430000305176, 0, 0, 115.99914550781 ) createObject ( 2024, 446.5, -2504.7998046875, 57.400001525879 ) createObject ( 1704, 446.39999389648, -2502.6999511719, 57.400001525879, 0, 0, 358 ) createObject ( 1704, 447.3994140625, -2505.8994140625, 57.400001525879, 0, 0, 179.99450683594 ) createObject ( 1704, 445.10000610352, -2504.6000976563, 57.400001525879, 0, 0, 85.995483398438 ) createObject ( 2206, 461, -2527.599609375, 51.599998474121, 0.999755859375, 0, 207.99865722656 ) createObject ( 1714, 459.8994140625, -2527.2998046875, 51.599998474121, 0, 0, 19.9951171875 ) createObject ( 1714, 449.29998779297, -2531.8000488281, 51.599998474121, 0, 0, 23.994140625 ) createObject ( 1714, 464.20001220703, -2523.1999511719, 51.599998474121, 0, 0, 33.994140625 ) createObject ( 1714, 470, -2519.8999023438, 51.599998474121, 0, 0, 33.99169921875 ) createObject ( 3761, 462.5, -2498.8999023438, 59.400001525879, 0, 0, 302 ) createObject ( 3761, 468.8994140625, -2499, 59.400001525879, 0, 0, 297.99865722656 ) createObject ( 3761, 466.5, -2504.7998046875, 59.400001525879, 0, 0, 297.99865722656 ) createObject ( 2991, 481.39999389648, -2515.8000488281, 58.099998474121, 0, 0, 308 ) createObject ( 2991, 478.099609375, -2512.099609375, 58.099998474121, 0, 0, 329.99633789063 ) createObject ( 2973, 473.29998779297, -2518.8999023438, 57.400001525879 ) createObject ( 2949, 471.39999389648, -2536.1000976563, 57.440002441406, 0, 0, 29.997680664063 ) createObject ( 2024, 463.89999389648, -2540, 57.400001525879, 0, 0, 6 ) createObject ( 1704, 465.10000610352, -2540.8999023438, 57.400001525879, 0, 0, 185.99450683594 ) createObject ( 1704, 466.20001220703, -2539, 57.400001525879, 0, 0, 271.99353027344 ) createObject ( 2024, 465.29998779297, -2540, 63.200000762939, 0, 0, 5.99853515625 ) createObject ( 2001, 472.10000610352, -2538.5, 63.200000762939 ) createObject ( 2001, 461.69921875, -2538.8994140625, 63.200000762939 ) createObject ( 1704, 474.79998779297, -2539.8000488281, 51.599998474121, 0, 0, 122 ) createObject ( 1704, 473.39999389648, -2537.3999023438, 51.599998474121, 0, 0, 121.99768066406 ) createObject ( 2921, 460.20001220703, -2539.8000488281, 42.5, 0, 0, 200 ) createObject ( 2922, 461.70001220703, -2542.3999023438, 40.900001525879, 0, 0, 301.5 ) createObject ( 2886, 461.70001220703, -2542.3999023438, 41.299999237061, 0, 0, 122 ) createObject ( 5302, 452.29998779297, -2548.6000976563, 56.19998550415, 0, 122, 29.998168945313 ) createObject ( 5302, 459.5, -2547.1000976563, 55, 0, 90, 29.998168945313 ) createObject ( 5302, 477, -2556.5, 52, 0, 0, 299.99816894531 ) createObject ( 2949, 441.70001220703, -2520.3000488281, 69.099998474121, 0, 0, 119.99813842773 ) createObject ( 2949, 439.29998779297, -2524.6999511719, 57.400001525879, 0, 0, 29.999114990234 ) createObject ( 2949, 440.69921875, -2510.099609375, 57.400001525879, 0, 0, 119.99816894531 ) createObject ( 5302, 458, -2545.3000488281, 55, 0, 90, 29.998168945313 ) createObject ( 5302, 455.79998779297, -2546.8000488281, 55, 0, 90, 29.998168945313 ) createObject ( 5302, 457.20001220703, -2548, 55, 0, 90, 29.998168945313 ) createObject ( 2949, 456.2998046875, -2501.19921875, 57.5, 0, 0, 119.99816894531 ) createObject ( 5302, 457.19921875, -2548, 55, 0, 90, 29.998168945313 ) createObject ( 1671, 459.79998779297, -2525.6000976563, 69.5, 0, 0, 140 ) createObject ( 1671, 437.29998779297, -2536.1999511719, 69.5, 0, 0, 315.99877929688 ) createObject ( 1671, 457, -2526.5, 69.5, 0, 0, 109.99572753906 ) createObject ( 1671, 457.69921875, -2528.5, 69.5, 0, 0, 309.99572753906 ) createObject ( 1671, 439.20001220703, -2533.3000488281, 69.5, 0, 0, 31.994262695313 ) createObject ( 1671, 440.5, -2535, 69.5, 0, 0, 131.9921875 ) createObject ( 1671, 463.89999389648, -2532.1999511719, 69.5, 0, 0, 131.98977661133 ) createObject ( 1671, 461.70001220703, -2535.6000976563, 69.5, 0, 0, 331.98974609375 ) createObject ( 1671, 441, -2543.1000976563, 69.5, 0, 0, 303.98486328125 ) createObject ( 1671, 460.69921875, -2533.7998046875, 69.599998474121, 0, 0, 303.98071289063 ) createObject ( 1671, 443.5, -2540.1000976563, 69.5, 0, 0, 105.9807434082 ) createObject ( 1671, 444.10000610352, -2541.6999511719, 69.5, 0, 0, 155.98071289063 ) createObject ( 5302, 479.39999389648, -2524.1000976563, 48, 0, 0, 300 ) END_DOUBLE_SIDED_TRANSACTION() end there is more in the scrpt but i wont post cuz it leaked or stolen btw i will never want to leak ur script cuz it is already leaked first.it is called sqlite not sql secong.csg leaked scripts use sqlite and mysql you should get banned from mta, joined your shitty server "sang" and every thing is stolen
  12. server: function noDayZAdminDamge(thePlayer) if (hasObjectPermissionTo(thePlayer, "function.banPlayer")) then if not getElementData(thePlayer,"inv") == true then setElementData(thePlayer,"inv",true) outputChatBox("You are now Invincible", thePlayer,255,0,0) else setElementData(thePlayer,"inv",false) outputChatBox("You are no longer Invincible", thePlayer,255,0,0) end end end addCommandHandler("inv",noDayZAdminDamge) client function noadmdamage() if getElementData(getLocalPlayer(), "inv") == true then setElementData(getLocalPlayer(),"blood",2500000) end end addEventHandler("onClientPlayerDamage", getRootElement(), noadmdamage)
  13. which dayz verison you're using?
  14. dayz blood is not like gta blood so try client side function noadmdamage() if getElementData(getLocalPlayer(), "INV") == true then setElementData(getLocalPlayer(),"blood",250000) end end addEventHandler("onClientPlayerDamage", getRootElement(), noadmdamage)
  15. function click(button,state) if (button == "left" and state == "up") then if (source == freeroampic) then removeEventHandler("onClientRender", root, dximage) guiSetVisible(freeroampic,false) triggerServerEvent ("spawm",localPlayer ) showCursor(false) end end end addEventHandler("onClientGUIClick", getRootElement(), click)
  16. addEventHandler("onPlayerJoin",root, function( ) local empTeam = getTeamFromName("Unemployed") setPlayerTeam (source, empTeam) setElementData(source, "Role", "Unemployed") end
  17. you should have posted this here viewforum.php?f=140
  18. function refs(player) if getTeamName(getPlayerTeam(player)) == "Criminal" then setElementVisibleTo(criminalBlip, player, true) else setElementVisibleTo(criminalBlip, player,false) end end setTimer(refs,1000,0) -- checks every second
×
×
  • Create New...