Add this on Character.cs inside public void CharacterLife() and put the buffs that you want to add :P
EDIT: Add a variable "DateTime" called PrestigeBuff on Character.cs too
Code:
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;
}
}