Battledale_PRC8/_module/nss/x2_im_getaccept.nss
Jaysyn904 7b9e44ebbb Initial upload
Initial upload.  PRC8 has been added.  Module compiles, PRC's default AI & treasure scripts have been integrated.  Started work on top hak for SLA / Ability / Scripting modifications.
2024-03-11 23:44:08 -04:00

44 lines
848 B
Plaintext

//
#include "prc_x2_craft"
int StartingConditional()
{
int iResult;
object oPC = GetPCSpeaker();
object oBackup = CIGetCurrentModBackup(oPC);
object oItem = CIGetCurrentModItem(oPC);
int nCost ;
if (CIGetCurrentModMode(oPC) == X2_CI_MODMODE_ARMOR)
{
if (GetIsObjectValid(oItem))
{
nCost = (CIGetArmorModificationCost(oBackup,oItem) );
}
else
{
return FALSE;
}
} else if (CIGetCurrentModMode(oPC) == X2_CI_MODMODE_WEAPON)
{
if (GetIsObjectValid(oItem))
{
nCost = (CIGetWeaponModificationCost(oBackup,oItem) );
}
else
{
return FALSE;
}
}
if (GetIsDM(oPC)||GetIsDMPossessed(oPC))
{
return TRUE;
}
iResult = (GetGold(oPC)>= nCost);
return iResult;
}