02.07.2014, 16:14
it is returning something like this :
0 days remaining in your VIP Expiry.
please check this code again
0 days remaining in your VIP Expiry.
please check this code again
pawn Код:
COMMAND:viptime(playerid, params[])
{
if(GetPVarInt(playerid, "VIP") == 1)
{
new diff_secs = ( GetPVarInt(playerid, "VIPTime") - gettime() );
new remain_days = floatround( diff_secs / (60 * 60 * 24 * 30));
new estring[128];
format(estring, 128, "%d days remaining in your VIP Expiry.", remain_days);
SendClientMessage(playerid, -1, estring);
}
return 1;
}

