37 lines
985 B
Plaintext
37 lines
985 B
Plaintext
#include "x2_inc_itemprop"
|
|
|
|
//This is actually the main function.
|
|
int script(object oItem, object oPC)
|
|
{
|
|
int nValue = GetGoldPieceValue(oItem);
|
|
if ((nValue > 65000) || (GetTag(oItem) == "anc_it_epicsr") || (GetTag(oItem) == "anc_it_epicar" || (GetTag(oItem) == "anc_it_epiche"))) return TRUE;
|
|
return FALSE;
|
|
}
|
|
|
|
int StartingConditional()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
int nSlot = 0;
|
|
object oItem;
|
|
int nResult;
|
|
|
|
//Check if the item being crafted is equipped
|
|
while (nSlot < 18)
|
|
{
|
|
oItem = GetItemInSlot(nSlot, oPC);
|
|
if (GetLocalInt(oItem, "Prototype") == TRUE)
|
|
nResult = script(oItem, oPC);
|
|
nSlot++;
|
|
}
|
|
//If the item is not equipped, search for it in the inventory
|
|
oItem = GetFirstItemInInventory(oPC);
|
|
while (GetIsObjectValid(oItem))
|
|
{
|
|
if (GetLocalInt(oItem, "Prototype") == TRUE)
|
|
nResult = script(oItem, oPC);
|
|
oItem = GetNextItemInInventory(oPC);
|
|
}
|
|
|
|
return nResult;
|
|
}
|