17.05.2015, 10:09
About the saving mistake look above ^.
Also, you should set the unix timestamp for that day not to add it to the previous value.
So replace with:
and remove:
completely.
Also, you should set the unix timestamp for that day not to add it to the previous value.
So replace with:
pawn Код:
PlayerInfo[playerid][VipTime] =gettime()+2592000;
...
PlayerInfo[playerid][VipTime] =gettime()+604800;
pawn Код:
PlayerInfo[playerid][VipTime] -= gettime();