26.05.2017, 14:25
I guess here is the problem
PlayerInfo[playerid][pFac] == FAC_POLICE;
should be
PlayerInfo[playerid][pFac] = FAC_POLICE;
2 equal ( == ) used in If statements.
1 equal used to set a var. equal to a value
Pss Rep if this helped you
PlayerInfo[playerid][pFac] == FAC_POLICE;
should be
PlayerInfo[playerid][pFac] = FAC_POLICE;
2 equal ( == ) used in If statements.
1 equal used to set a var. equal to a value
Pss Rep if this helped you