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.
72 lines
1.4 KiB
Plaintext
72 lines
1.4 KiB
Plaintext
#include "prc_x2_craft"
|
|
#include "jw_inc_craft"
|
|
|
|
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
int nDC;
|
|
int nCost;
|
|
object oPC = GetPCSpeaker();
|
|
object oBackup = CIGetCurrentModBackup(oPC);
|
|
object oItem = CIGetCurrentModItem(oPC);
|
|
|
|
if (CIGetCurrentModMode(oPC) == X2_CI_MODMODE_ARMOR)
|
|
{
|
|
if (GetIsObjectValid(oItem))
|
|
{
|
|
iResult = (CIGetArmorModificationCost(oBackup,oItem) != 0);
|
|
}
|
|
else
|
|
{
|
|
nDC = 0;
|
|
nCost=0;
|
|
}
|
|
} else if (CIGetCurrentModMode(oPC) == X2_CI_MODMODE_WEAPON)
|
|
{
|
|
if (GetIsObjectValid(oItem))
|
|
{
|
|
iResult = (CIGetWeaponModificationCost(oBackup,oItem) != 0);
|
|
}
|
|
else
|
|
{
|
|
nDC = 0;
|
|
nCost=0;
|
|
}
|
|
|
|
}
|
|
else if (CIGetCurrentModMode(oPC) == X2_CI_MODMODE_HELMET)
|
|
{
|
|
if (GetIsObjectValid(oItem))
|
|
{
|
|
iResult = (JWGetHelmetModificationCost(oItem) != 0); // We use armour modification costs for helmets
|
|
}
|
|
else
|
|
{
|
|
nDC = 0;
|
|
nCost=0;
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
else if (CIGetCurrentModMode(oPC) == X2_CI_MODMODE_SHIELD)
|
|
{
|
|
if (GetIsObjectValid(oItem))
|
|
{
|
|
iResult = (JWGetShieldModificationCost(oItem) != 0); // We use armour modification costs for helmets
|
|
}
|
|
else
|
|
{
|
|
nDC = 0;
|
|
nCost=0;
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
return iResult;
|
|
}
|