كود:
public void Check(Client.GameState client)
{
if (DateTime.Now >= this.EndOn)
{
client.Entity.VIPLevel = this.OLDLevel;
this.Level = 0;
this.OLDLevel = 0;
this.Delete(client);
client.Send("Your VIP, is ended, Now your VIP level is " + client.Entity.VIPLevel + "");
}
this.CheckStamp = Time32.Now;
}
كود:
if (client.VIPDays.Level > 0 && DateTime.Now >= client.VIPDays.EndOn)
{
client.Entity.VIPLevel = client.VIPDays.OLDLevel;
client.VIPDays.Save(client);
client.VIPDays.Delete(client);
client.Send("Your VIP is end, Try to get other item and unlock it.");
}