Battledale_PRC8/_module/nss/jw_im_can_h_ca.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

24 lines
828 B
Plaintext

//------------------------------------------------------------------------------
// Starting Condition
//------------------------------------------------------------------------------
/*
Return TRUE if
No helmet is equipped OR
The current helmet is marked as plot OR
Craft Armor has been deactivated by a global variable
*/
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
#include "prc_x2_itemprop"
int StartingConditional()
{
int iResult;
object oA = GetItemInSlot(INVENTORY_SLOT_HEAD,GetPCSpeaker());
iResult = (!GetIsObjectValid(oA) ||
GetPlotFlag(oA) ||
GetLocalInt(GetModule(),"X2_L_DO_NOT_ALLOW_MODIFY_ARMOR") );
return iResult;
}