I have a question how to add a buff for the prestige level
if (PrestigeBuff.AddSeconds(2) <= DateTime.Now)
{
PrestigeBuff = DateTime.Now;
switch (PrestigeLevel) {
case 1:
AddBuff(new Buff(3000, Level), true);
break;
case 2:
AddBuff(new Buff(3001, Level), true);
break;
case 3:
AddBuff(new Buff(400, Level), true);
break;
}
}