14.04.2012, 11:43
Quote:
Because you are creating PCount in this code, not global and with loading.
|
pawn Код:
new PCount = 0;
pawn Код:
PCount++;
And then it saves it as one. Each time someone registers same process happens. To fix this add
pawn Код:
new pCount = 0;
pawn Код:
PCount++;