22.08.2009, 01:59
when player logs do you have
?
and
this
is like this
pawn Код:
gPlayerLogged[playerid]=1;
and
this
pawn Код:
if (gPlayerLogged[playerid] = 0)
{
Kick(playerid);
return 1;
}
pawn Код:
if (gPlayerLogged[playerid] == 0)
{
Kick(playerid);
return 1;
}

