Tem como fazer a contagem aos contratario ex : 30 - 29 - 28 - 27 nгo 30 - 31 - 32 - 33 - 34 segundos ? cуdigo
pawn Код:
CMD:vips(playerid, params[])
{
new string[128];
if(!IsPlayerConnected(playerid)) return SendClientMessage(playerid, -1, "You need to login first before using any command.");
SendClientMessage(playerid, -1, "[Online VIPs]");
new Year, Month, Day;
new Hour, Minute, Second;
gettime(Hour, Minute, Second);
getdate(Year, Month, Day);
foreach(Player, i)
{
if(PlayerInfo[i][pVIPDay])
{
format(string, sizeof(string), "Vip %s [Tempo restante: Dias %d, %dh, %dm, %ds]", Name(i), Day, Hour, Minute, Second);
SendClientMessage(playerid, -1, string);
}
}
return 1;
}