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.
16 lines
358 B
Plaintext
16 lines
358 B
Plaintext
#include "jw_smith_copy"
|
|
|
|
int StartingConditional()
|
|
{
|
|
int iResult=FALSE;
|
|
object oPC=GetPCSpeaker();
|
|
object oArmour=GetItemInSlot(INVENTORY_SLOT_CHEST,oPC);
|
|
itemproperty iAdd=ItemPropertyDamageResistance(IP_CONST_DAMAGETYPE_ACID,IP_CONST_DAMAGERESIST_5);
|
|
if (IPGetItemHasProperty(oArmour,iAdd,-1))
|
|
{
|
|
iResult=TRUE;
|
|
}
|
|
|
|
return iResult;
|
|
}
|