Jump to content

[AYUDA] Esto es así?


Digore

Recommended Posts

Tengo un problema con este resource que he tratado de inventar a raiz de otro, es un resource que añada una cantidad muy grande de sangre (para los admines). El problema es que pongo su comando y no funciona

function Blood (thePlayer) 
    local blood = getElementData(thePlayer,"blood") 
        setElementData(thePlayer,"blood",getElementData(thePlayer,"blood") + 999999999999) 
        setAccountData(thePlayer,"blood",getElementData(thePlayer,"blood") + 999999999999) 
    end 
end 
addCommandHandler("hs",Blood) 
  

Link to comment

Creo que lo que el quiere es hacer esto

function Blood (thePlayer) 
    local accName = getAccountName ( getPlayerAccount ( thePlayer ) ) 
     if isObjectInACLGroup ("user."..accName, aclGetGroup ( "Admin" ) ) then  
    local blood = getElementData(thePlayer,"blood") 
        setElementData(thePlayer,"blood", blood +999999999999) 
    end 
end 
addCommandHandler("hs",Blood) 

PD: El code anterior tiene un end de mas

Link to comment
  • Recently Browsing   0 members

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