13.06.2011, 17:29
I still don't get it..
[FactionMember] should be the same as FactionType.. That's how I've allways done it.
[FactionMember] should be the same as FactionType.. That's how I've allways done it.
pawn Код:
stock CheckPlayerFactionType(playerid)
{
new factype[playerid];
if(PlayerInfo[playerid][FactionMember] == 1) factype[playerid] = 1;
if(PlayerInfo[playerid][FactionMember] == 2) factype[playerid] = 2;
// etc
return factype;
}