24.02.2014, 15:10
PlayerInfo is the name of the enum and PInfo is the name of the array. You've used the opposite in your code so either swap those two or change PlayerInfo to PInfo. Few of them:
and it should be:
pawn Код:
PlayerInfo[id][Jailed]
PlayerInfo[id][JailTimer]
PlayerInfo[playerid][Jailed] = 0;
pawn Код:
PInfo[id][Jailed]
PInfo[id][JailTimer]
PInfo[playerid][Jailed] = 0;