Digore Posted December 28, 2014 Share Posted December 28, 2014 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
Alexs Posted December 28, 2014 Share Posted December 28, 2014 Te recomiendo, para facilitar la obtención de ayuda, publicar tu meta.xml. Link to comment
Digore Posted January 2, 2015 Author Share Posted January 2, 2015 Ahora mismo no puedo publicarla, pero a finales de esta semana lo publico y me comentáis Link to comment
Plate Posted January 2, 2015 Share Posted January 2, 2015 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
Recommended Posts