Added Skullkeep Mystic Forge / Combine system., modified to use a single forge and combine for all item types. Added new Magesmith shop & NPC in Town of Ascension. Full compile. Updated release archive.
20 lines
341 B
Plaintext
20 lines
341 B
Plaintext
#include "prc_x2_itemprop"
|
|
|
|
int StartingConditional()
|
|
{
|
|
object oForge = GetNearestObjectByTag("forge_custom",OBJECT_SELF,1);
|
|
object oItem = GetFirstItemInInventory(oForge);
|
|
int nCount = IPGetNumberOfItemProperties(oItem);
|
|
int nProps;
|
|
|
|
if (nCount > 7)
|
|
|
|
{
|
|
return TRUE;
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
|
|
}
|