15.10.2014, 23:53
pawn Код:
enum (<<= 1)
{
Encarcelado = 0b1,
Conectado,
};
new PlayerBit[MAX_PLAYERS];
PlayerBit[playerid] |= Encarcelado; // Agregamos el bit
if(PlayerBit[playerid] & Encarcelado)
{
}
else
{
}
PlayerBit[playerid] &= ~Encarcelado; // Para eliminar el bit.
PD: Ojo que PAWN solo soporta 32 bits, si se pasa del limite le pasaria algo como el Y2K38.
Un saludo.