Rune_PRC8/_module/nss/vat_rebuild_all.nss
Jaysyn904 d1c309ae63 Initial commit
Initial commit
2024-09-13 09:10:39 -04:00

16 lines
355 B
Plaintext

//vat_rebuild_all
//strip char to level 1 & restore xp for total level rebuild
void main()
{
object oPC = GetPCSpeaker();
//apply visual effect to PC
//ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_DECK), oPC);
//zap and restore xp for rebuild
int iXP = GetXP(oPC);
SetXP(oPC, 0);
SetXP(oPC, iXP);
}