05.06.2013, 22:41
Quote:
Whay isn't this ->> PlayerInfo[playerid][pcooldown] - 1; <-- working ?
![]() |
pawn Код:
PlayerInfo[playerid][pcooldown] = PlayerInfo[playerid][pcooldown] - 1;
// Or the shorthand version:
PlayerInfo[playerid][pcooldown] -= 1;
// Or even shorter:
PlayerInfo[playerid][pcooldown]--;