Shargast_PRC8/_module/Chapter 1/nss/mk_im_getchanged.nss
Jaysyn904 66a0a3e043 Initial commit
Initial commit.
2024-08-03 14:13:18 -04:00

22 lines
444 B
Plaintext

//#include "x2_inc_craft"
#include "mk_inc_craft"
int StartingConditional()
{
object oPC = GetPCSpeaker();
object oBackup = CIGetCurrentModBackup(oPC);
object oItem = CIGetCurrentModItem(oPC);
int iResult;
if (CIGetCurrentModMode(oPC)==MK_CI_MODMODE_CHARACTER)
{
iResult = MK_GetIsDescriptionModified(oPC);
}
else
{
iResult = MK_GetIsModified(oItem, oBackup);
}
return iResult;
}