Shargast_PRC8/_module/Chapter 1/nss/mk_restorebody.nss

17 lines
268 B
Plaintext
Raw Normal View History

2024-08-03 14:13:18 -04:00
#include "mk_inc_body"
void main()
{
object oPC = GetPCSpeaker();
if (MK_GetBodyPartToBeModified(oPC)==MK_CRAFTBODY_SAVERESTORE)
{
MK_RestoreBody(oPC, 0);
}
else
{
MK_RestoreBodyPart(oPC);
}
MK_CleanUpBodyPart(oPC);
}