StanMarsh Posted May 30, 2013 Share Posted May 30, 2013 Hola, Me podrian decir Como Privatizar un skin Y Que solo los de un grupo del acl list lo puedan usar. Link to comment
NodZen Posted May 30, 2013 Share Posted May 30, 2013 Checkeas si está en el grupo con isObjectInACLGroup y si está entonces le dás el skin. Link to comment
BorderLine Posted May 30, 2013 Share Posted May 30, 2013 te doy mi codigo. Simple y corto. SI quieres agregar mas ai vas viendo function checkskin( posX, posY, posZ, spawnRotation, theTeam, theSkin, theInterior, theDimension ) if not isObjectInACLGroup("user." .. getAccountName(getPlayerAccount(source)), aclGetGroup("Admin")) then if theSkin == 117 then kickPlayer(source) end end end addEventHandler("onPlayerSpawn",getRootElement(),checkskin) le agrege kick player. Si gustas cambiaselo a killPed(source) Link to comment
StanMarsh Posted May 30, 2013 Author Share Posted May 30, 2013 te doy mi codigo. Simple y corto. SI quieres agregar mas ai vas viendo function checkskin( posX, posY, posZ, spawnRotation, theTeam, theSkin, theInterior, theDimension ) if not isObjectInACLGroup("user." .. getAccountName(getPlayerAccount(source)), aclGetGroup("Admin")) then if theSkin == 117 then kickPlayer(source) end end end addEventHandler("onPlayerSpawn",getRootElement(),checkskin) le agrege kick player. Si gustas cambiaselo a killPed(source) Gracias nod y Yakusa, Mejor pongo killPed Y Yakusa Como pongo Eso, Que tienes en tu Firma?. Link to comment
BorderLine Posted May 30, 2013 Share Posted May 30, 2013 es un codigo de la pagina de FFS. Si tienes cuenta hay debes buscar entre las opciones donde dise signature Link to comment
Recommended Posts