Jump to content

Script not working HELP


Recommended Posts

Posted

Hi there, how come into this marker does not show a GUI

S:

  
marker = createMarker (487.599609375, -0.900390625, 1001.4000244141, "cylinder", 0.60000002) 
stoldj = createObject (14391, 487.7001953125, -2.7001953125, 1002.299987793, 0, 0, 90) 
marker2 = createMarker (493.39999389648, -24.799999237061, 1001.299987793, "arrow", 1.20000004, 235, 227, 19, 255) 
marker3 = createMarker (1836.8000488281, -1682.5, 13.89999961853, "arrow", 1.20000004, 235, 227, 19, 255) 
glosnik1 = createObject (2232, 484.29998779297, -5.6999998092651, 1001.700012207, 0, 0, 0) 
glosnik2 = createObject (2232, 490.20001220703, -5.5999999046326, 1001.700012207, 0, 0, 0) 
glosnik3 = createObject (2232, 493.29998779297, -13.89999961853, 1002, 0, 0, 272) 
tancerka1 = createPed (90, 479.60000610352, -8.8999996185303, 1002.4000244141, 246.001373) 
tancerka2 = createPed (90, 479.5, -4.3000001907349, 1003.9000244141, 214.001373) 
barierka1 = createObject (2773, 1836, -1681, 13, 0, 0, 90) 
barierka2 = createObject (2773, 1833.4000244141, -1681, 13.10000038147, 2, 0, 90) 
barierka3 = createObject (2773, 1836.0999755859, -1684, 12.89999961853, 2, 0, 90) 
barierka4 = createObject (2773, 1833.4000244141, -1684, 13, 1.99951171875, 0, 90) 
blip = createBlip (1837.1999511719, -1682.5, 14.199999809265, 48, 2, 255, 0, 0, 255, 0) 
  
 addEventHandler("onResourceStart", resourceRoot, function() 
    tancerka1 = createPed (90, 479.60000610352, -8.8999996185303, 1002.4000244141, 246.001373) 
    tancerka2 = createPed (90, 479.5, -4.3000001907349, 1003.9000244141, 214.001373) 
    setTimer (AnimacjaTancerek, 1000, 0) 
end) 
  
function AnimacjaTancerek() 
setPedAnimation (tancerka1, "STRIP", "Strip_G") 
setPedAnimation (tancerka2, "DANCING", "dnce_M_e") 
end 
  
function TeleportNaDyskoteke(player) 
if getElementType(player)=="player" then 
if source == marker3 then 
setElementPosition(player, 493.60000610352, -22.799999237061, 1000.700012207) 
setElementInterior(player, 17) 
setElementFrozen(player, true) 
setElementInterior(glosnik1, 17) 
setElementInterior(glosnik2, 17) 
setElementInterior(glosnik3, 17) 
setElementInterior(marker2, 17) 
setElementInterior(marker, 17) 
setElementInterior(stoldj, 17) 
setElementInterior(tancerka1, 17) 
setElementInterior(tancerka2, 17) 
setTimer(setElementFrozen, 1000, 1, player, false) 
end 
end 
end 
addEventHandler("onMarkerHit", marker3, TeleportNaDyskoteke) 
  
function TeleportZDyskoteki(player) 
if getElementType(player)=="player" then 
if source == marker2 then 
setElementPosition(player, 1834.6999511719, -1682.5999755859, 13.39999961853) 
setElementInterior(player, 0) 
setElementFrozen(player, true) 
setTimer(setElementFrozen, 1000, 1, player, false) 
end 
end 
end 
addEventHandler("onMarkerHit", marker2, TeleportZDyskoteki) 
  
  
  
addEventHandler("onResourceStart", resourceRoot, 
function() 
    for i, player in ipairs(getElementsByType("player")) do 
        if isObjectInACLGroup("user."..getAccountName(getPlayerAccount(player)), aclGetGroup("DJ")) then 
            if isElementWithInMarker("player") then 
                setElementData(player, "Show_GUI", true) 
        else 
                setElementData(player, "Show_GUI", nil) 
            end 
        end 
    end 
end 
) 
  
  
addEventHandler("onPlayerLogin", root, function(_, acc) 
    if isObjectInACLGroup("user."..getAccountName(acc), aclGetGroup("DJ")) then 
        setElementData(source, "Show_GUI", true) 
    else 
        setElementData(source, "Show_GUI", nil) 
    end 
end 
) 
addEventHandler("onPlayerLogout", root, function(_, acc) 
    tiggerClientEvent(source, "LogOutSetVisible", root) 
    setElementData(source, "Show_GUI", nil) 
end 
) 
  

C:

  
GUIEditor = { 
    button = {}, 
    window = {}, 
    label = {}, 
    memo = {}, 
} 
addEventHandler("onClientResourceStart", resourceRoot, 
    function() 
        GUIEditor.window[1] = guiCreateWindow(242, 216, 1224, 670, "DjPanel By Matevsz", false) 
        guiWindowSetSizable(GUIEditor.window[1], false) 
  
        GUIEditor.button[1] = guiCreateButton(22, 39, 360, 32, "Wlacz dym", false, GUIEditor.window[1]) 
        GUIEditor.button[2] = guiCreateButton(23, 93, 359, 34, "Wylacz dym", false, GUIEditor.window[1]) 
        GUIEditor.memo[1] = guiCreateMemo(23, 179, 359, 32, "", false, GUIEditor.window[1]) 
        GUIEditor.label[1] = guiCreateLabel(81, 159, 253, 15, "Wpisz tekst, ktory bedzie pokazany na scianie", false, GUIEditor.window[1]) 
        GUIEditor.browser[1] = guiCreateBrowser(396, 39, 810, 609, "", false, GUIEditor.window[1]) 
        GUIEditor.button[3] = guiCreateButton(13, 624, 108, 34, "Zamknij", false, GUIEditor.window[1]) 
        GUIEditor.button[4] = guiCreateButton(91, 228, 222, 29, "Pokaz tekst", false, GUIEditor.window[1]) 
        local theBrowser = guiGetBrowser(GUIEditor.browser[1]) 
        guiSetVisible(GUIEditor.window[1], false) 
end 
) 
addEventHandler("onClientBrowserCreated", theBrowser, 
    function() 
        loadBrowserURL(source, "https://www.youtube.com") 
end 
) 
end 
end 
  
function WlaczDym() 
if source == GUIEditor.button[1] then 
dym = createObject (2780, 489.29998779297, -13.89999961853, 994.20001220703, 0, 0, 0) 
end 
end 
addEventHandler("onClientGUIClick", root, WlaczDym) 
  
function WylaczDym() 
if source == GUIEditor.button[2] then 
destroyElement(2780) 
end 
end 
addEventHandler("onClientGUIClick", root, WylaczDym) 
  
addEventHandler("onMarkerHit", marker 
function openGUI() 
    if getElementData(localPlayer, "Show_GUI") ~= nil then 
        guiSetVisible(GUIEditor.window[1], not guiGetVisible(GUIEditor.window[1])) 
        showCursor(guiSetVisible(GUIEditor.window[1])) 
    end 
end 
) 
  
  
addEventHandler("onClientGUIClick", Zamknij, -- close GUI 
    function () 
        guiSetVisible(GUIEditor.window[1], false) 
        showCursor(false) 
    end 
) 
  
addEvent("LogOutSetVisible", true) 
addEventHandler("LogOutSetVisible", root, 
    function() 
        if guiGetVisible(GUIEditor.window[1]) then 
            guiSetVisible(GUIEditor.window[1], false) 
            showCursor(false) 
        end 
    end 
) 
  

Posted

You are trying to use onMarkerHit > it's server side function you must use

onClientMarkerHit() 

more than that marker it's not defined client side

Do not yield your back to your enemy, might feel something strange in your ass.

Two things are infinite the universe and human stupidity and i'm not sure about the universe.

UF: IsTextInGridList | GetGridListRowIndexFromText | Table.removeValue | removeHex | dxDrawTriangle

Skype: SaSuki102 | About Me | Youtube channel | Lua Tips & Tricks | Lua Strings | Lua Tables | Lua Operators

Posted (edited)
You are trying to use onMarkerHit > it's server side function you must use
onClientMarkerHit() 

more than that marker it's not defined client side

He is using server side marker to trigger the gui

Edit: sorry, Just noticed that he is using onmarkerhit client side.

Edited by Guest
Posted
You are trying to use onMarkerHit > it's server side function you must use
onClientMarkerHit() 

more than that marker it's not defined client side

He is using server side marker to trigger the gui

i think you must read the client side he is trying to use onMarkerHit. ???

Do not yield your back to your enemy, might feel something strange in your ass.

Two things are infinite the universe and human stupidity and i'm not sure about the universe.

UF: IsTextInGridList | GetGridListRowIndexFromText | Table.removeValue | removeHex | dxDrawTriangle

Skype: SaSuki102 | About Me | Youtube channel | Lua Tips & Tricks | Lua Strings | Lua Tables | Lua Operators

Posted
  
marker = createMarker (487.599609375, -0.900390625, 1001.4000244141, "cylinder", 0.60000002) 
stoldj = createObject (14391, 487.7001953125, -2.7001953125, 1002.299987793, 0, 0, 90) 
marker2 = createMarker (493.39999389648, -24.799999237061, 1001.299987793, "arrow", 1.20000004, 235, 227, 19, 255) 
marker3 = createMarker (1836.8000488281, -1682.5, 13.89999961853, "arrow", 1.20000004, 235, 227, 19, 255) 
glosnik1 = createObject (2232, 484.29998779297, -5.6999998092651, 1001.700012207, 0, 0, 0) 
glosnik2 = createObject (2232, 490.20001220703, -5.5999999046326, 1001.700012207, 0, 0, 0) 
glosnik3 = createObject (2232, 493.29998779297, -13.89999961853, 1002, 0, 0, 272) 
tancerka1 = createPed (90, 479.60000610352, -8.8999996185303, 1002.4000244141, 246.001373) 
tancerka2 = createPed (90, 479.5, -4.3000001907349, 1003.9000244141, 214.001373) 
barierka1 = createObject (2773, 1836, -1681, 13, 0, 0, 90) 
barierka2 = createObject (2773, 1833.4000244141, -1681, 13.10000038147, 2, 0, 90) 
barierka3 = createObject (2773, 1836.0999755859, -1684, 12.89999961853, 2, 0, 90) 
barierka4 = createObject (2773, 1833.4000244141, -1684, 13, 1.99951171875, 0, 90) 
blip = createBlip (1837.1999511719, -1682.5, 14.199999809265, 48, 2, 255, 0, 0, 255, 0) 
  
 addEventHandler("onResourceStart", resourceRoot, function() 
    tancerka1 = createPed (90, 479.60000610352, -8.8999996185303, 1002.4000244141, 246.001373) 
    tancerka2 = createPed (90, 479.5, -4.3000001907349, 1003.9000244141, 214.001373) 
    setTimer (AnimacjaTancerek, 1000, 0) 
end) 
  
function AnimacjaTancerek() 
setPedAnimation (tancerka1, "STRIP", "Strip_G") 
setPedAnimation (tancerka2, "DANCING", "dnce_M_e") 
end 
  
function TeleportNaDyskoteke(player) 
if getElementType(player)=="player" then 
if source == marker3 then 
setElementPosition(player, 493.60000610352, -22.799999237061, 1000.700012207) 
setElementInterior(player, 17) 
setElementFrozen(player, true) 
setElementInterior(glosnik1, 17) 
setElementInterior(glosnik2, 17) 
setElementInterior(glosnik3, 17) 
setElementInterior(marker2, 17) 
setElementInterior(marker, 17) 
setElementInterior(stoldj, 17) 
setElementInterior(tancerka1, 17) 
setElementInterior(tancerka2, 17) 
setTimer(setElementFrozen, 1000, 1, player, false) 
end 
end 
end 
addEventHandler("onMarkerHit", marker3, TeleportNaDyskoteke) 
  
function TeleportZDyskoteki(player) 
if getElementType(player)=="player" then 
if source == marker2 then 
setElementPosition(player, 1834.6999511719, -1682.5999755859, 13.39999961853) 
setElementInterior(player, 0) 
setElementFrozen(player, true) 
setTimer(setElementFrozen, 1000, 1, player, false) 
end 
end 
end 
addEventHandler("onMarkerHit", marker2, TeleportZDyskoteki) 
  
  
  
addEventHandler("onResourceStart", resourceRoot, 
function() 
    for i, player in ipairs(getElementsByType("player")) do 
        if isObjectInACLGroup("user."..getAccountName(getPlayerAccount(player)), aclGetGroup("DJ")) then 
            if isElementWithInMarker("player") then 
                setElementData(player, "Show_GUI", true) 
        else 
                setElementData(player, "Show_GUI", nil) 
            end 
        end 
    end 
end 
) 
  
  
addEventHandler("onPlayerLogin", root, function(_, acc) 
    if isObjectInACLGroup("user."..getAccountName(acc), aclGetGroup("DJ")) then 
        setElementData(source, "Show_GUI", true) 
    else 
        setElementData(source, "Show_GUI", nil) 
    end 
end 
) 
addEventHandler("onPlayerLogout", root, function(_, acc) 
    tiggerClientEvent(source, "LogOutSetVisible", root) 
    setElementData(source, "Show_GUI", nil) 
end 
) 
  
addEventHandler("onMarkerHit", marker, 
function openGUI() 
    if getElementData(localPlayer, "Show_GUI") ~= nil then 
        guiSetVisible(GUIEditor.window[1], not guiGetVisible(GUIEditor.window[1])) 
        showCursor(guiSetVisible(GUIEditor.window[1])) 
    end 
end 
) 
  

ERROR: Line 91: "function openGUI()" "(" expected near 'openGUI'

Posted (edited)

You must use triggerClientEvent when the player hit the marker.

Server side :

marker = createMarker (487.599609375, -0.900390625, 1001.4000244141, "cylinder", 0.60000002) 
stoldj = createObject (14391, 487.7001953125, -2.7001953125, 1002.299987793, 0, 0, 90) 
marker2 = createMarker (493.39999389648, -24.799999237061, 1001.299987793, "arrow", 1.20000004, 235, 227, 19, 255) 
marker3 = createMarker (1836.8000488281, -1682.5, 13.89999961853, "arrow", 1.20000004, 235, 227, 19, 255) 
glosnik1 = createObject (2232, 484.29998779297, -5.6999998092651, 1001.700012207, 0, 0, 0) 
glosnik2 = createObject (2232, 490.20001220703, -5.5999999046326, 1001.700012207, 0, 0, 0) 
glosnik3 = createObject (2232, 493.29998779297, -13.89999961853, 1002, 0, 0, 272) 
tancerka1 = createPed (90, 479.60000610352, -8.8999996185303, 1002.4000244141, 246.001373) 
tancerka2 = createPed (90, 479.5, -4.3000001907349, 1003.9000244141, 214.001373) 
barierka1 = createObject (2773, 1836, -1681, 13, 0, 0, 90) 
barierka2 = createObject (2773, 1833.4000244141, -1681, 13.10000038147, 2, 0, 90) 
barierka3 = createObject (2773, 1836.0999755859, -1684, 12.89999961853, 2, 0, 90) 
barierka4 = createObject (2773, 1833.4000244141, -1684, 13, 1.99951171875, 0, 90) 
blip = createBlip (1837.1999511719, -1682.5, 14.199999809265, 48, 2, 255, 0, 0, 255, 0) 
  
addEventHandler("onResourceStart", resourceRoot,  
function() 
    tancerka1 = createPed (90, 479.60000610352, -8.8999996185303, 1002.4000244141, 246.001373) 
    tancerka2 = createPed (90, 479.5, -4.3000001907349, 1003.9000244141, 214.001373) 
    setTimer (AnimacjaTancerek, 1000, 0) 
    for i, player in ipairs(getElementsByType("player")) do 
        if isObjectInACLGroup("user."..getAccountName(getPlayerAccount(player)), aclGetGroup("DJ")) then 
            if isElementWithInMarker("player") then 
                setElementData(player, "Show_GUI", true) 
        else 
                setElementData(player, "Show_GUI", nil) 
            end 
        end 
    end 
end) 
  
addEventHandler("onMarkerHit", marker 
function openGUI( hitElement, matchingDimension ) 
if matchingDimension and isElement(hitElement) and getElementType(hitElement) == "player" then  
    if getElementData(hitElement, "Show_GUI") ~= nil then 
        triggerClientEvent(hitElement,"ShowGui",hitElement) 
    end 
    end  
end 
) 
  
function AnimacjaTancerek() 
setPedAnimation (tancerka1, "STRIP", "Strip_G") 
setPedAnimation (tancerka2, "DANCING", "dnce_M_e") 
end 
  
function TeleportNaDyskoteke(player) 
    if getElementType(player)=="player" then 
        if source == marker3 then 
        setElementPosition(player, 493.60000610352, -22.799999237061, 1000.700012207) 
        setElementInterior(player, 17) 
        setElementFrozen(player, true) 
        setElementInterior(glosnik1, 17) 
        setElementInterior(glosnik2, 17) 
        setElementInterior(glosnik3, 17) 
        setElementInterior(marker2, 17) 
        setElementInterior(marker, 17) 
        setElementInterior(stoldj, 17) 
        setElementInterior(tancerka1, 17) 
        setElementInterior(tancerka2, 17) 
        setTimer(setElementFrozen, 1000, 1, player, false) 
        end 
    end 
end 
addEventHandler("onMarkerHit", marker3, TeleportNaDyskoteke) 
  
function TeleportZDyskoteki(player) 
    if getElementType(player)=="player" then 
        if source == marker2 then 
        setElementPosition(player, 1834.6999511719, -1682.5999755859, 13.39999961853) 
        setElementInterior(player, 0) 
        setElementFrozen(player, true) 
        setTimer(setElementFrozen, 1000, 1, player, false) 
    end 
end 
end 
addEventHandler("onMarkerHit", marker2, TeleportZDyskoteki) 
  
  
  
addEventHandler("onPlayerLogin", root, function(_, acc) 
    if isObjectInACLGroup("user."..getAccountName(acc), aclGetGroup("DJ")) then 
        setElementData(source, "Show_GUI", true) 
    else 
        setElementData(source, "Show_GUI", nil) 
    end 
end 
) 
  
addEventHandler("onPlayerLogout", root, function(_, acc) 
    triggerClientEvent(source, "LogOutSetVisible", root) 
    setElementData(source, "Show_GUI", nil) 
end 
) 

Client side:

GUIEditor = { 
    button = {}, 
    window = {}, 
    label = {}, 
    memo = {}, 
} 
  
addEventHandler("onClientResourceStart", resourceRoot, 
    function() 
        GUIEditor.window[1] = guiCreateWindow(242, 216, 1224, 670, "DjPanel By Matevsz", false) 
        guiWindowSetSizable(GUIEditor.window[1], false) 
         guiSetVisible(GUIEditor.window[1], false) 
  
        GUIEditor.button[1] = guiCreateButton(22, 39, 360, 32, "Wlacz dym", false, GUIEditor.window[1]) 
        GUIEditor.button[2] = guiCreateButton(23, 93, 359, 34, "Wylacz dym", false, GUIEditor.window[1]) 
        GUIEditor.memo[1] = guiCreateMemo(23, 179, 359, 32, "", false, GUIEditor.window[1]) 
        GUIEditor.label[1] = guiCreateLabel(81, 159, 253, 15, "Wpisz tekst, ktory bedzie pokazany na scianie", false, GUIEditor.window[1]) 
        GUIEditor.browser[1] = guiCreateBrowser(396, 39, 810, 609, "", false, GUIEditor.window[1]) 
        GUIEditor.button[3] = guiCreateButton(13, 624, 108, 34, "Zamknij", false, GUIEditor.window[1]) 
        GUIEditor.button[4] = guiCreateButton(91, 228, 222, 29, "Pokaz tekst", false, GUIEditor.window[1]) 
        local theBrowser = guiGetBrowser(GUIEditor.browser[1]) 
end 
) 
  
  
function showGui() 
    if not guiGetVisible(GUIEditor.window[1]) then 
        guiSetVisible(GUIEditor.window[1], true) 
        showCursor(true) 
    end 
end  
addEvent("ShowGui", true) 
addEventHandler("ShowGui",root,showGui) 
  
addEventHandler("onClientBrowserCreated", theBrowser, 
    function() 
        loadBrowserURL(source, "https://www.youtube.com") 
end 
) 
  
  
function WlaczDym() 
    if source == GUIEditor.button[1] then 
        dym = createObject (2780, 489.29998779297, -13.89999961853, 994.20001220703, 0, 0, 0) 
    elseif source == GUIEditor.button[2] then 
        if isElement(dym) then 
            destroyElement(dym) 
        end  
    elseif source == GUIEditor.button[3] then  
        guiSetVisible(GUIEditor.window[1], false) 
        showCursor(false) 
    end 
end 
addEventHandler("onClientGUIClick", root, WlaczDym) 
  
  
  
addEvent("LogOutSetVisible", true) 
addEventHandler("LogOutSetVisible", root, 
    function() 
        if guiGetVisible(GUIEditor.window[1]) then 
            guiSetVisible(GUIEditor.window[1], false) 
            showCursor(false) 
        end 
    end 
) 

Edited by Guest

Do not yield your back to your enemy, might feel something strange in your ass.

Two things are infinite the universe and human stupidity and i'm not sure about the universe.

UF: IsTextInGridList | GetGridListRowIndexFromText | Table.removeValue | removeHex | dxDrawTriangle

Skype: SaSuki102 | About Me | Youtube channel | Lua Tips & Tricks | Lua Strings | Lua Tables | Lua Operators

Posted

server side, line 33:

32.addEventHandler("onMarkerHit", marker,

33.function openGUI( hitElement, matchingDimension )

ERROR: '(' expected near 'openGUI'

Posted (edited)
server side, line 33:

32.addEventHandler("onMarkerHit", marker,

33.function openGUI( hitElement, matchingDimension )

ERROR: '(' expected near 'openGUI'

as WhoAmI said try this

addEventHandler("onMarkerHit", marker, 
function ( hitElement, matchingDimension ) 
if matchingDimension and isElement(hitElement) and getElementType(hitElement) == "player" then 
    if getElementData(hitElement, "Show_GUI") ~= nil then 
        triggerClientEvent(hitElement,"ShowGui",hitElement) 
    end 
    end 
end 
) 

Edited by Guest

Do not yield your back to your enemy, might feel something strange in your ass.

Two things are infinite the universe and human stupidity and i'm not sure about the universe.

UF: IsTextInGridList | GetGridListRowIndexFromText | Table.removeValue | removeHex | dxDrawTriangle

Skype: SaSuki102 | About Me | Youtube channel | Lua Tips & Tricks | Lua Strings | Lua Tables | Lua Operators

Posted

the same :(

as in line 32 delete "," in:

addEventHandler ("onMarkerHit" marker, 

then the error is: ")" expected (to close "(" at line 32) near 'function'

Posted
server side, line 33:

32.addEventHandler("onMarkerHit", marker,

33.function openGUI( hitElement, matchingDimension )

ERROR: '(' expected near 'openGUI'

as WhoAmI said try this

addEventHandler("onMarkerHit", marker, 
function openGUI( hitElement, matchingDimension ) 
if matchingDimension and isElement(hitElement) and getElementType(hitElement) == "player" then 
    if getElementData(hitElement, "Show_GUI") ~= nil then 
        triggerClientEvent(hitElement,"ShowGui",hitElement) 
    end 
    end 
end 
) 

you forgot remove function name.

addEventHandler("onMarkerHit", marker, 
function( hitElement, matchingDimension ) 
if matchingDimension and isElement(hitElement) and getElementType(hitElement) == "player" then 
    if getElementData(hitElement, "Show_GUI") ~= nil then 
        triggerClientEvent(hitElement,"ShowGui",hitElement) 
    end 
    end 
end 
) 

Inactivo.

Posted
the same :(

as in line 32 delete "," in:

addEventHandler ("onMarkerHit" marker, 

then the error is: ")" expected (to close "(" at line 32) near 'function'

done the problem from your code

addEventHandler("onMarkerHit", marker, 
function ( hitElement, matchingDimension ) 
if matchingDimension and isElement(hitElement) and getElementType(hitElement) == "player" then 
    if getElementData(hitElement, "Show_GUI") ~= nil then 
        triggerClientEvent(hitElement,"ShowGui",hitElement) 
    end 
    end 
end 
) 

Do not yield your back to your enemy, might feel something strange in your ass.

Two things are infinite the universe and human stupidity and i'm not sure about the universe.

UF: IsTextInGridList | GetGridListRowIndexFromText | Table.removeValue | removeHex | dxDrawTriangle

Skype: SaSuki102 | About Me | Youtube channel | Lua Tips & Tricks | Lua Strings | Lua Tables | Lua Operators

Posted

hmmm weird .. 0 errors, but how come into it's marker does not appear in debugscript 3 nothing..

in "p" > resource > Manage ACL > +DJ = objects user.nick and resource.Dj, so I'm in a group

Posted (edited)
hmmm weird .. 0 errors, but how come into it's marker does not appear in debugscript 3 nothing..

in "p" > resource > Manage ACL > +DJ = objects user.nick and resource.Dj, so I'm in a group

try to add this to your acl.xml file

"DJ"> 
        "user.<< your account name >>"> 
    

Edited by Guest

Do not yield your back to your enemy, might feel something strange in your ass.

Two things are infinite the universe and human stupidity and i'm not sure about the universe.

UF: IsTextInGridList | GetGridListRowIndexFromText | Table.removeValue | removeHex | dxDrawTriangle

Skype: SaSuki102 | About Me | Youtube channel | Lua Tips & Tricks | Lua Strings | Lua Tables | Lua Operators

Posted

try to reload your acl.xml file

type /racl in your chabox then press enter.

function reload ( player) 
if not isElement(player) then return end 
        local reload = aclReload()  
            if ( reload ) then  
                outputChatBox ( "ACL was successfully reloaded.", player, 255, 0, 0 )  
            else  
        outputChatBox ( "An unknown error occured. Please check the ACL file exists.",player, 255, 0, 0 ) 
    end 
end 
addCommandHandler ( "racl", reload ) 

Do not yield your back to your enemy, might feel something strange in your ass.

Two things are infinite the universe and human stupidity and i'm not sure about the universe.

UF: IsTextInGridList | GetGridListRowIndexFromText | Table.removeValue | removeHex | dxDrawTriangle

Skype: SaSuki102 | About Me | Youtube channel | Lua Tips & Tricks | Lua Strings | Lua Tables | Lua Operators

Posted

"An unknown error occured. Please check the ACL file exists."

+ Warning

ReloadACL\ReloadACL.lua:3: Access denied @ 'aclReload'

Posted (edited)
"An unknown error occured. Please check the ACL file exists."

+ Warning

ReloadACL\ReloadACL.lua:3: Access denied @ 'aclReload'

shutdown the server then open it.

Edited by Guest

Do not yield your back to your enemy, might feel something strange in your ass.

Two things are infinite the universe and human stupidity and i'm not sure about the universe.

UF: IsTextInGridList | GetGridListRowIndexFromText | Table.removeValue | removeHex | dxDrawTriangle

Skype: SaSuki102 | About Me | Youtube channel | Lua Tips & Tricks | Lua Strings | Lua Tables | Lua Operators

Posted

I turned off and turned on the server, but the warning appears when I type /racl

+ "An unknown error occured. Please check the ACL file exists."

Posted (edited)
I turned off and turned on the server, but the warning appears when I type /racl

+ "An unknown error occured. Please check the ACL file exists."

Try this one

function aclRel ( player ) 
    if not isElement(player) then return end  
    local account = getPlayerAccount ( player ) 
    if account and not isGuestAccount(account) then 
    local accountName =  getAccountName ( account ) 
    if ( isObjectInACLGroup ( "user." ..accountName, aclGetGroup ( "Admin" ) ) ) then 
        local reloadacl = aclReload()  
            if ( reloadacl ) then  
            outputChatBox ( "acl Successfully reloaded.", player, 255, 0, 0 ) 
            else  
            outputChatBox ( "acl file not exist", player, 255, 0, 0 ) 
        end 
        else 
        outputChatBox ( "You are not able to use this command", player, 255, 0, 0 ) 
    end 
    end  
end 
addCommandHandler ( "racl", aclRel ) 

Edited by Guest

Do not yield your back to your enemy, might feel something strange in your ass.

Two things are infinite the universe and human stupidity and i'm not sure about the universe.

UF: IsTextInGridList | GetGridListRowIndexFromText | Table.removeValue | removeHex | dxDrawTriangle

Skype: SaSuki102 | About Me | Youtube channel | Lua Tips & Tricks | Lua Strings | Lua Tables | Lua Operators

Posted
"acl file not exist"

Show me your ACL.xml file

Do not yield your back to your enemy, might feel something strange in your ass.

Two things are infinite the universe and human stupidity and i'm not sure about the universe.

UF: IsTextInGridList | GetGridListRowIndexFromText | Table.removeValue | removeHex | dxDrawTriangle

Skype: SaSuki102 | About Me | Youtube channel | Lua Tips & Tricks | Lua Strings | Lua Tables | Lua Operators

Posted
  

    "Everyone"> 
        "Default">
        "user.*"> 
        "resource.*"> 
    
    "Moderator"> 
        "Moderator">
        "resource.mapcycler"> 
        "resource.mapmanager"> 
        "resource.resourcemanager"> 
        "resource.votemanager"> 
    
    "SuperModerator"> 
        "Moderator">
        "SuperModerator">
    
    "Admin"> 
        "Moderator">
        "SuperModerator">
        "Admin">
        "RPC">
        "resource.admin"> 
        "resource.webadmin"> 
        "user.Matevsz"> 
    
    "Console"> 
        "Moderator">
        "SuperModerator">
        "Admin">
        "RPC">
        "user.Console"> 
    
    "RPC"> 
        "RPC">
    
    "MapEditor"> 
        "Default">
        "MapEditor">
        "resource.editor_main"> 
        "resource.edf"> 
    
    "raceACLGroup"> 
        "Default">
        "raceACL">
        "resource.race"> 
    
    "DevGroup"> 
        "DevACL">
    
    "autoGroup_acpanel"> 
        "autoACL_acpanel">
        "resource.acpanel"> 
    
    "DJ"> 
        "user.Matevsz"> 
        "resource.DjJob"> 
    
    "Default"> 
        "general.ModifyOtherObjects" access="false">
        "general.http" access="false">
        "command.start" access="false">
        "command.stop" access="false">
        "command.stopall" access="false">
        "command.gamemode" access="false">
        "command.changemode" access="false">
        "command.changemap" access="false">
        "command.stopmode" access="false">
        "command.stopmap" access="false">
        "command.skipmap" access="false">
        "command.restart" access="false">
        "command.refresh" access="false">
        "command.refreshall" access="false">
        "command.addaccount" access="false">
        "command.delaccount" access="false">
        "command.debugscript" access="false">
        "command.chgpass" access="false">
        "command.loadmodule" access="false">
        "command.upgrade" access="false">
        "command.mute" access="false">
        "command.crun" access="false">
        "command.srun" access="false">
        "command.run" access="false">
        "command.unmute" access="false">
        "command.kick" access="false">
        "command.ban" access="false">
        "command.banip" access="false">
        "command.unbanip" access="false">
        "command.reloadbans" access="false">
        "command.shutdown" access="false">
        "command.install" access="false">
        "command.aexec" access="false">
        "command.whois" access="false">
        "command.whowas" access="false">
        "function.executeCommandHandler" access="false">
        "function.setPlayerMuted" access="false">
        "function.addAccount" access="false">
        "function.addBan" access="false">
        "function.setUnbanTime" access="false">
        "function.setBanAdmin" access="false">
        "function.setBanReason" access="false">
        "function.setBanNick" access="false">
        "function.removeBan" access="false">
        "function.removeAccount" access="false">
        "function.setAccountPassword" access="false">
        "function.kickPlayer" access="false">
        "function.banIP" access="false">
        "function.banPlayer" access="false">
        "function.banSerial" access="false">
        "function.getBansXML" access="false">
        "function.unbanIP" access="false">
        "function.unbanSerial" access="false">
        "function.reloadBans" access="false">
        "function.setServerPassword" access="false">
        "function.getServerPassword" access="false">
        "function.callRemote" access="false">
        "function.fetchRemote" access="false">
        "function.startResource" access="false">
        "function.stopResource" access="false">
        "function.restartResource" access="false">
        "function.createResource" access="false">
        "function.copyResource" access="false">
        "function.addResourceMap" access="false">
        "function.addResourceConfig" access="false">
        "function.removeResourceFile" access="false">
        "function.setResourceDefaultSetting" access="false">
        "function.removeResourceDefaultSetting" access="false">
        "function.redirectPlayer" access="false">
        "function.aclReload" access="false">
        "function.aclSave" access="false">
        "function.aclCreate" access="false">
        "function.aclDestroy" access="false">
        "function.aclSetRight" access="false">
        "function.aclRemoveRight" access="false">
        "function.aclCreateGroup" access="false">
        "function.aclDestroyGroup" access="false">
        "function.aclGroupAddACL" access="false">
        "function.aclGroupRemoveACL" access="false">
        "function.aclGroupAddObject" access="false">
        "function.aclGroupRemoveObject" access="false">
        "function.refreshResources" access="false">
        "function.setServerConfigSetting" access="false">
        "function.updateResourceACLRequest" access="false">
        "command.aclrequest" access="false">
        "general.adminpanel" access="false">
        "general.tab_players" access="false">
        "general.tab_resources" access="false">
        "general.tab_maps" access="false">
        "general.tab_server" access="false">
        "general.tab_bans" access="false">
        "general.tab_adminchat" access="false">
        "command.freeze" access="false">
        "command.setnick" access="false">
        "command.shout" access="false">
        "command.spectate" access="false">
        "command.slap" access="false">
        "command.setgroup" access="false">
        "command.sethealth" access="false">
        "command.setarmour" access="false">
        "command.setmoney" access="false">
        "command.setskin" access="false">
        "command.setteam" access="false">
        "command.giveweapon" access="false">
        "command.setstat" access="false">
        "command.jetpack" access="false">
        "command.warp" access="false">
        "command.setdimension" access="false">
        "command.setinterior" access="false">
        "command.givevehicle" access="false">
        "command.repair" access="false">
        "command.blow" access="false">
        "command.destroy" access="false">
        "command.customize" access="false">
        "command.setcolor" access="false">
        "command.setpaintjob" access="false">
        "command.listmessages" access="false">
        "command.readmessage" access="false">
        "command.listresources" access="false">
        "command.execute" access="false">
        "command.delete" access="false">
        "command.setpassword" access="false">
        "command.setwelcome" access="false">
        "command.setgame" access="false">
        "command.setmap" access="false">
        "command.setweather" access="false">
        "command.blendweather" access="false">
        "command.setblurlevel" access="false">
        "command.setwaveheight" access="false">
        "command.setskygradient" access="false">
        "command.setgamespeed" access="false">
        "command.setgravity" access="false">
        "command.settime" access="false">
        "function.shutdown" access="false">
        "command.setfpslimit" access="false">
        "command.fetchRemote" access="false">
        "command.unban" access="false">
        "command.banserial" access="false">
        "command.unbanserial" access="false">
        "command.listbans" access="false">
    
    "Moderator"> 
        "general.ModifyOtherObjects" access="false">
        "command.gamemode" access="true">
        "command.changemode" access="true">
        "command.changemap" access="true">
        "command.stopmode" access="true">
        "command.stopmap" access="true">
        "command.skipmap" access="true">
        "command.mute" access="true">
        "command.unmute" access="true">
        "command.whois" access="true">
        "command.whowas" access="true">
        "function.setPlayerMuted" access="true">
        "function.kickPlayer" access="true">
        "function.banIP" access="true">
        "function.banPlayer" access="true">
        "function.banSerial" access="true">
        "function.getBansXML" access="true">
        "function.unbanIP" access="true">
        "function.unbanSerial" access="true">
        "function.startResource" access="true">
        "function.stopResource" access="true">
        "function.restartResource" access="true">
        "function.redirectPlayer" access="true">
        "general.adminpanel" access="true">
        "general.tab_players" access="true">
        "general.tab_resources" access="false">
        "general.tab_maps" access="false">
        "general.tab_server" access="true">
        "general.tab_bans" access="false">
        "general.tab_adminchat" access="true">
        "command.kick" access="false">
        "command.freeze" access="true">
        "command.setnick" access="true">
        "command.shout" access="true">
        "command.spectate" access="true">
        "command.slap" access="true">
        "command.setgroup" access="false">
        "command.sethealth" access="true">
        "command.setarmour" access="true">
        "command.setmoney" access="false">
        "command.setskin" access="true">
        "command.setteam" access="true">
        "command.giveweapon" access="true">
        "command.setstat" access="true">
        "command.jetpack" access="true">
        "command.warp" access="true">
        "command.setdimension" access="true">
        "command.setinterior" access="true">
        "command.createteam" access="false">
        "command.destroyteam" access="false">
        "command.givevehicle" access="true">
        "command.repair" access="true">
        "command.blowvehicle" access="true">
        "command.destroyvehicle" access="true">
        "command.customize" access="true">
        "command.setcolor" access="true">
        "command.setpaintjob" access="true">
        "command.listmessages" access="true">
        "command.readmessage" access="true">
        "command.listresources" access="true">
        "command.start" access="false">
        "command.stop" access="false">
        "command.stopall" access="false">
        "command.restart" access="false">
        "command.execute" access="false">
        "command.setpassword" access="false">
        "command.setwelcome" access="false">
        "command.setgame" access="false">
        "command.setmap" access="false">
        "command.setweather" access="true">
        "command.blendweather" access="true">
        "command.setblurlevel" access="true">
        "command.setwaveheight" access="true">
        "command.setskygradient" access="true">
        "command.setgamespeed" access="true">
        "command.setgravity" access="true">
        "command.settime" access="true">
        "command.ban" access="false">
        "command.unban" access="false">
        "command.banip" access="false">
        "command.unbanip" access="false">
        "command.banserial" access="false">
        "command.unbanserial" access="false">
        "command.listbans" access="false">
    
    "SuperModerator"> 
        "general.ModifyOtherObjects" access="false">
        "command.start" access="true">
        "command.stop" access="true">
        "command.restart" access="true">
        "command.kick" access="true">
        "command.ban" access="true">
        "command.banip" access="true">
        "command.unbanip" access="true">
        "command.reloadbans" access="true">
        "command.refresh" access="true">
        "command.refreshall" access="true">
        "command.loadmodule" access="true">
        "command.addaccount" access="true">
        "command.delaccount" access="true">
        "command.chgpass" access="true">
        "function.addAccount" access="true">
        "function.removeAccount" access="true">
        "function.setAccountPassword" access="true">
        "general.adminpanel" access="true">
        "general.tab_players" access="true">
        "general.tab_resources" access="true">
        "general.tab_maps" access="true">
        "general.tab_server" access="true">
        "general.tab_bans" access="true">
        "general.tab_adminchat" access="true">
        "command.freeze" access="true">
        "command.mute" access="true">
        "command.setnick" access="true">
        "command.shout" access="true">
        "command.spectate" access="true">
        "command.slap" access="true">
        "command.setgroup" access="false">
        "command.sethealth" access="true">
        "command.setarmour" access="true">
        "command.setmoney" access="true">
        "command.setskin" access="true">
        "command.setteam" access="true">
        "command.giveweapon" access="true">
        "command.setstat" access="true">
        "command.jetpack" access="true">
        "command.warp" access="true">
        "command.setdimension" access="true">
        "command.setinterior" access="true">
        "command.createteam" access="true">
        "command.destroyteam" access="true">
        "command.givevehicle" access="true">
        "command.repair" access="true">
        "command.blowvehicle" access="true">
        "command.destroyvehicle" access="true">
        "command.customize" access="true">
        "command.setcolor" access="true">
        "command.setpaintjob" access="true">
        "command.listmessages" access="true">
        "command.readmessage" access="true">
        "command.listresources" access="true">
        "command.stopall" access="false">
        "command.execute" access="false">
        "command.setpassword" access="true">
        "command.setwelcome" access="true">
        "command.setgame" access="true">
        "command.setmap" access="true">
        "command.setweather" access="true">
        "command.blendweather" access="true">
        "command.setblurlevel" access="true">
        "command.setwaveheight" access="true">
        "command.setskygradient" access="true">
        "command.setgamespeed" access="true">
        "command.setgravity" access="true">
        "command.settime" access="true">
        "command.unban" access="true">
        "command.banserial" access="true">
        "command.unbanserial" access="true">
        "command.listbans" access="true">
    
    "Admin"> 
        "general.ModifyOtherObjects" access="true">
        "general.http" access="true">
        "command.shutdown" access="true">
        "command.install" access="true">
        "command.aexec" access="true">
        "command.debugscript" access="true">
        "command.upgrade" access="true">
        "command.crun" access="true">
        "command.srun" access="true">
        "command.run" access="true">
        "function.addBan" access="true">
        "function.setUnbanTime" access="true">
        "function.setBanAdmin" access="true">
        "function.setBanReason" access="true">
        "function.setBanNick" access="true">
        "function.removeBan" access="true">
        "function.reloadBans" access="true">
        "function.executeCommandHandler" access="true">
        "function.setServerPassword" access="true">
        "function.getServerPassword" access="true">
        "function.createResource" access="true">
        "function.copyResource" access="true">
        "function.addResourceMap" access="true">
        "function.addResourceConfig" access="true">
        "function.removeResourceFile" access="true">
        "function.setResourceDefaultSetting" access="true">
        "function.removeResourceDefaultSetting" access="true">
        "function.aclReload" access="true">
        "function.aclSave" access="true">
        "function.aclCreate" access="true">
        "function.aclDestroy" access="true">
        "function.aclSetRight" access="true">
        "function.aclRemoveRight" access="true">
        "function.aclCreateGroup" access="true">
        "function.aclDestroyGroup" access="true">
        "function.aclGroupAddACL" access="true">
        "function.aclGroupRemoveACL" access="true">
        "function.aclGroupAddObject" access="true">
        "function.aclGroupRemoveObject" access="true">
        "function.refreshResources" access="true">
        "function.setServerConfigSetting" access="true">
        "function.updateResourceACLRequest" access="true">
        "command.aclrequest" access="true">
        "general.adminpanel" access="true">
        "general.tab_players" access="true">
        "general.tab_resources" access="true">
        "general.tab_server" access="true">
        "general.tab_maps" access="true">
        "general.tab_bans" access="true">
        "general.tab_adminchat" access="true">
        "command.kick" access="true">
        "command.freeze" access="true">
        "command.mute" access="true">
        "command.setnick" access="true">
        "command.shout" access="true">
        "command.spectate" access="true">
        "command.slap" access="true">
        "command.setgroup" access="true">
        "command.sethealth" access="true">
        "command.setarmour" access="true">
        "command.setmoney" access="true">
        "command.setskin" access="true">
        "command.setteam" access="true">
        "command.giveweapon" access="true">
        "command.setstat" access="true">
        "command.jetpack" access="true">
        "command.warp" access="true">
        "command.setdimension" access="true">
        "command.setinterior" access="true">
        "command.createteam" access="true">
        "command.destroyteam" access="true">
        "command.givevehicle" access="true">
        "command.repair" access="true">
        "command.blowvehicle" access="true">
        "command.destroyvehicle" access="true">
        "command.customize" access="true">
        "command.setcolor" access="true">
        "command.setpaintjob" access="true">
        "command.listmessages" access="true">
        "command.readmessage" access="true">
        "command.listresources" access="true">
        "command.start" access="true">
        "command.stop" access="true">
        "command.stopall" access="false">
        "command.delete" access="true">
        "command.restart" access="true">
        "command.execute" access="true">
        "command.setpassword" access="true">
        "command.setwelcome" access="true">
        "command.setgame" access="true">
        "command.setmap" access="true">
        "command.setweather" access="true">
        "command.blendweather" access="true">
        "command.setblurlevel" access="true">
        "command.setwaveheight" access="true">
        "command.setskygradient" access="true">
        "command.setgamespeed" access="true">
        "command.setgravity" access="true">
        "command.settime" access="true">
        "command.setfpslimit" access="true">
        "function.shutdown" access="true">
        "command.ban" access="true">
        "command.unban" access="true">
        "command.banip" access="true">
        "command.unbanip" access="true">
        "command.banserial" access="true">
        "command.unbanserial" access="true">
        "command.listbans" access="true">
    
    "RPC"> 
        "function.callRemote" access="true">
        "function.fetchRemote" access="true">
        "general.adminpanel" access="false">
        "general.tab_players" access="false">
        "general.tab_resources" access="false">
        "general.tab_maps" access="false">
        "general.tab_server" access="false">
        "general.tab_bans" access="false">
        "general.tab_adminchat" access="false">
        "command.kick" access="false">
        "command.freeze" access="false">
        "command.mute" access="false">
        "command.setnick" access="false">
        "command.shout" access="false">
        "command.spectate" access="false">
        "command.slap" access="false">
        "command.setgroup" access="false">
        "command.sethealth" access="false">
        "command.setarmour" access="false">
        "command.setmoney" access="false">
        "command.setskin" access="false">
        "command.setteam" access="false">
        "command.giveweapon" access="false">
        "command.setstat" access="false">
        "command.jetpack" access="false">
        "command.warp" access="false">
        "command.setdimension" access="false">
        "command.setinterior" access="false">
        "command.givevehicle" access="false">
        "command.repair" access="false">
        "command.blow" access="false">
        "command.destroy" access="false">
        "command.customize" access="false">
        "command.setcolor" access="false">
        "command.setpaintjob" access="false">
        "command.listmessages" access="false">
        "command.readmessage" access="false">
        "command.listresources" access="false">
        "command.start" access="false">
        "command.stop" access="false">
        "command.stopall" access="false">
        "command.restart" access="false">
        "command.execute" access="false">
        "command.delete" access="false">
        "command.setpassword" access="false">
        "command.setwelcome" access="false">
        "command.setgame" access="false">
        "command.setmap" access="false">
        "command.setweather" access="false">
        "command.blendweather" access="false">
        "command.setblurlevel" access="false">
        "command.setwaveheight" access="false">
        "command.setskygradient" access="false">
        "command.setgamespeed" access="false">
        "command.setgravity" access="false">
        "command.settime" access="false">
        "function.shutdown" access="false">
        "command.setfpslimit" access="false">
        "command.fetchRemote" access="false">
        "command.ban" access="false">
        "command.unban" access="false">
        "command.banip" access="false">
        "command.unbanip" access="false">
        "command.banserial" access="false">
        "command.unbanserial" access="false">
        "command.listbans" access="false">
    
    "MapEditor"> 
        "general.ModifyOtherObjects" access="true">
        "function.startResource" access="true">
        "function.stopResource" access="true">
        "function.restartResource" access="true">
        "function.createResource" access="true">
        "function.copyResource" access="true">
        "function.renameResource" access="true">
        "function.deleteResource" access="true">
        "function.addResourceMap" access="true">
        "function.addResourceConfig" access="true">
        "function.removeResourceFile" access="true">
        "function.setResourceDefaultSetting" access="true">
        "function.removeResourceDefaultSetting" access="true">
        "function.xmlLoadFile" access="true">
        "function.refreshResources" access="true">
        "general.adminpanel" access="false">
        "general.tab_players" access="false">
        "general.tab_resources" access="false">
        "general.tab_maps" access="false">
        "general.tab_server" access="false">
        "general.tab_bans" access="false">
        "general.tab_adminchat" access="false">
        "command.kick" access="false">
        "command.freeze" access="false">
        "command.mute" access="false">
        "command.setnick" access="false">
        "command.shout" access="false">
        "command.spectate" access="false">
        "command.slap" access="false">
        "command.setgroup" access="false">
        "command.sethealth" access="false">
        "command.setarmour" access="false">
        "command.setmoney" access="false">
        "command.setskin" access="false">
        "command.setteam" access="false">
        "command.giveweapon" access="false">
        "command.setstat" access="false">
        "command.jetpack" access="false">
        "command.warp" access="false">
        "command.setdimension" access="false">
        "command.setinterior" access="false">
        "command.givevehicle" access="false">
        "command.repair" access="false">
        "command.blow" access="false">
        "command.destroy" access="false">
        "command.customize" access="false">
        "command.setcolor" access="false">
        "command.setpaintjob" access="false">
        "command.listmessages" access="false">
        "command.readmessage" access="false">
        "command.listresources" access="false">
        "command.start" access="false">
        "command.stop" access="false">
        "command.stopall" access="false">
        "command.restart" access="false">
        "command.execute" access="false">
        "command.delete" access="false">
        "command.setpassword" access="false">
        "command.setwelcome" access="false">
        "command.setgame" access="false">
        "command.setmap" access="false">
        "command.setweather" access="false">
        "command.blendweather" access="false">
        "command.setblurlevel" access="false">
        "command.setwaveheight" access="false">
        "command.setskygradient" access="false">
        "command.setgamespeed" access="false">
        "command.setgravity" access="false">
        "command.settime" access="false">
        "function.shutdown" access="false">
        "command.setfpslimit" access="false">
        "command.fetchRemote" access="false">
        "command.ban" access="false">
        "command.unban" access="false">
        "command.banip" access="false">
        "command.unbanip" access="false">
        "command.banserial" access="false">
        "command.unbanserial" access="false">
        "command.listbans" access="false">
    
    "raceACL"> 
        "general.ModifyOtherObjects" access="true">
        "function.xmlLoadFile" access="true">
        "function.startResource" access="true">
        "function.stopResource" access="true">
        "function.restartResource" access="true">
        "general.adminpanel" access="false">
        "general.tab_players" access="false">
        "general.tab_resources" access="false">
        "general.tab_maps" access="false">
        "general.tab_server" access="false">
        "general.tab_bans" access="false">
        "general.tab_adminchat" access="false">
        "command.kick" access="false">
        "command.freeze" access="false">
        "command.mute" access="false">
        "command.setnick" access="false">
        "command.shout" access="false">
        "command.spectate" access="false">
        "command.slap" access="false">
        "command.setgroup" access="false">
        "command.sethealth" access="false">
        "command.setarmour" access="false">
        "command.setmoney" access="false">
        "command.setskin" access="false">
        "command.setteam" access="false">
        "command.giveweapon" access="false">
        "command.setstat" access="false">
        "command.jetpack" access="false">
        "command.warp" access="false">
        "command.setdimension" access="false">
        "command.setinterior" access="false">
        "command.givevehicle" access="false">
        "command.repair" access="false">
        "command.blow" access="false">
        "command.destroy" access="false">
        "command.customize" access="false">
        "command.setcolor" access="false">
        "command.setpaintjob" access="false">
        "command.listmessages" access="false">
        "command.readmessage" access="false">
        "command.listresources" access="false">
        "command.start" access="false">
        "command.stop" access="false">
        "command.stopall" access="false">
        "command.restart" access="false">
        "command.execute" access="false">
        "command.delete" access="false">
        "command.setpassword" access="false">
        "command.setwelcome" access="false">
        "command.setgame" access="false">
        "command.setmap" access="false">
        "command.setweather" access="false">
        "command.blendweather" access="false">
        "command.setblurlevel" access="false">
        "command.setwaveheight" access="false">
        "command.setskygradient" access="false">
        "command.setgamespeed" access="false">
        "command.setgravity" access="false">
        "command.settime" access="false">
        "function.shutdown" access="false">
        "command.setfpslimit" access="false">
        "command.fetchRemote" access="false">
        "command.ban" access="false">
        "command.unban" access="false">
        "command.banip" access="false">
        "command.unbanip" access="false">
        "command.banserial" access="false">
        "command.unbanserial" access="false">
        "command.listbans" access="false">
    
    "DevACL"> 
        "resource.performancebrowser.http" access="true">
        "resource.ajax.http" access="true">
        "general.adminpanel" access="false">
        "general.tab_players" access="false">
        "general.tab_resources" access="false">
        "general.tab_maps" access="false">
        "general.tab_server" access="false">
        "general.tab_bans" access="false">
        "general.tab_adminchat" access="false">
        "command.kick" access="false">
        "command.freeze" access="false">
        "command.mute" access="false">
        "command.setnick" access="false">
        "command.shout" access="false">
        "command.spectate" access="false">
        "command.slap" access="false">
        "command.setgroup" access="false">
        "command.sethealth" access="false">
        "command.setarmour" access="false">
        "command.setmoney" access="false">
        "command.setskin" access="false">
        "command.setteam" access="false">
        "command.giveweapon" access="false">
        "command.setstat" access="false">
        "command.jetpack" access="false">
        "command.warp" access="false">
        "command.setdimension" access="false">
        "command.setinterior" access="false">
        "command.givevehicle" access="false">
        "command.repair" access="false">
        "command.blow" access="false">
        "command.destroy" access="false">
        "command.customize" access="false">
        "command.setcolor" access="false">
        "command.setpaintjob" access="false">
        "command.listmessages" access="false">
        "command.readmessage" access="false">
        "command.listresources" access="false">
        "command.start" access="false">
        "command.stop" access="false">
        "command.stopall" access="false">
        "command.restart" access="false">
        "command.execute" access="false">
        "command.delete" access="false">
        "command.setpassword" access="false">
        "command.setwelcome" access="false">
        "command.setgame" access="false">
        "command.setmap" access="false">
        "command.setweather" access="false">
        "command.blendweather" access="false">
        "command.setblurlevel" access="false">
        "command.setwaveheight" access="false">
        "command.setskygradient" access="false">
        "command.setgamespeed" access="false">
        "command.setgravity" access="false">
        "command.settime" access="false">
        "function.shutdown" access="false">
        "command.setfpslimit" access="false">
        "command.fetchRemote" access="false">
        "command.ban" access="false">
        "command.unban" access="false">
        "command.banip" access="false">
        "command.unbanip" access="false">
        "command.banserial" access="false">
        "command.unbanserial" access="false">
        "command.listbans" access="false">
    
    "autoACL_acpanel"> 
        "function.setServerConfigSetting" access="false" who="" pending="true" date="">
        "function.kickPlayer" access="false" who="" pending="true" date="">
        "function.fetchRemote" access="false" who="" pending="true" date="">
    

Posted

bro are you sure that you are using this account "Matevsz".

Do not yield your back to your enemy, might feel something strange in your ass.

Two things are infinite the universe and human stupidity and i'm not sure about the universe.

UF: IsTextInGridList | GetGridListRowIndexFromText | Table.removeValue | removeHex | dxDrawTriangle

Skype: SaSuki102 | About Me | Youtube channel | Lua Tips & Tricks | Lua Strings | Lua Tables | Lua Operators

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...