06.07.2012, 12:26
So i have this thing on /stats where it shows how many days you have left of vip but if your vip level is 0 and you do /stats it says you have 27 days.. how can i make it say none
If you need any more code just ask
Please help
Thanks
pawn Код:
TotalVipTime = Player[id][VipExpiredTime] - gettime();
if (TotalVipTime >= 86400)
{
Days = TotalVipTime / 86400;
TotalVipTime = TotalVipTime - (Days * 86400);//here it calculates the days
}
if (TotalVipTime >= 3600)
{
Hours = TotalVipTime / 3600;
TotalVipTime = TotalVipTime - (Hours * 3600);//calculates the seconds
}
if (TotalVipTime >= 60)
{
Minutes = TotalVipTime / 60;
TotalVipTime = TotalVipTime - (Minutes * 60);//calculates the minutes
}
Please help
Thanks