//:: jw_inc_craft.nss const int X2_CI_MODMODE_HELMET = 3; const int X2_CI_MODMODE_SHIELD = 4; // cost to modify oOlditem to look like oNewItem int JWGetWeaponModificationDC (object oOldItem, object oNewItem); // ----------------------------------------------------------------------------- // Return the cost // ----------------------------------------------------------------------------- int JWGetHelmetModificationCost(object oItem) { int nTotal = 100; int nCurrApp = GetItemAppearance(oItem, ITEM_APPR_TYPE_ARMOR_MODEL, 0); // Expensive ones if (nCurrApp==8||nCurrApp==13||nCurrApp==16||nCurrApp==21||nCurrApp==22||nCurrApp==23||nCurrApp==25||nCurrApp==27||nCurrApp==28||nCurrApp==29||nCurrApp==31) { nTotal=500; } return nTotal; } // ----------------------------------------------------------------------------- // Return the dc // ----------------------------------------------------------------------------- int JWGetHelmetModificationDC(object oItem) { int nTotal = 10; int nCurrApp = GetItemAppearance(oItem, ITEM_APPR_TYPE_ARMOR_MODEL, 0); // Expensive ones if (nCurrApp==8||nCurrApp==13||nCurrApp==16||nCurrApp==21||nCurrApp==22||nCurrApp==23||nCurrApp==25||nCurrApp==27||nCurrApp==28||nCurrApp==29||nCurrApp==31) { nTotal=25; } return nTotal; } // ----------------------------------------------------------------------------- // Return the cost // ----------------------------------------------------------------------------- int JWGetShieldModificationCost(object oItem) { int nTotal = 50; int nCurrApp = GetItemAppearance(oItem, ITEM_APPR_TYPE_SIMPLE_MODEL, 0); // Expensive ones if (nCurrApp==12||nCurrApp==13||nCurrApp==22||nCurrApp==23||nCurrApp==32||nCurrApp==33||nCurrApp==42||nCurrApp==43) { nTotal=nTotal*2; } if (GetBaseItemType(oItem)==BASE_ITEM_LARGESHIELD) { nTotal=nTotal*4; } if (GetBaseItemType(oItem)==BASE_ITEM_TOWERSHIELD) { nTotal=nTotal*8; } return nTotal; } // ----------------------------------------------------------------------------- // Return the dc // ----------------------------------------------------------------------------- int JWGetShieldModificationDC(object oItem) { int nTotal = 5; int nCurrApp = GetItemAppearance(oItem, ITEM_APPR_TYPE_SIMPLE_MODEL, 0); // Expensive ones if (nCurrApp==12||nCurrApp==13||nCurrApp==22||nCurrApp==23||nCurrApp==32||nCurrApp==33||nCurrApp==42||nCurrApp==43) { nTotal=nTotal+5; } if (GetBaseItemType(oItem)==BASE_ITEM_LARGESHIELD) { nTotal=nTotal+10; } if (GetBaseItemType(oItem)==BASE_ITEM_TOWERSHIELD) { nTotal=nTotal+15; } return nTotal; } // cost to modify oOlditem to look like oNewItem int JWGetWeaponModificationDC (object oOldItem, object oNewItem) { int nTotal = 13; int nPart; for (nPart = 0; nPart<=2; nPart++) { if (GetItemAppearance(oOldItem,ITEM_APPR_TYPE_WEAPON_MODEL, nPart) !=GetItemAppearance(oNewItem,ITEM_APPR_TYPE_WEAPON_MODEL, nPart)) { nTotal=nTotal+1; } // Palmer now we check for colours if (GetItemAppearance(oOldItem,ITEM_APPR_TYPE_WEAPON_COLOR, nPart) !=GetItemAppearance(oNewItem,ITEM_APPR_TYPE_WEAPON_COLOR, nPart)) { nTotal=nTotal+2; } } return nTotal; } // Returns a coloured weapon object JWGetColouredWeapon (object oItem, int nPart, int nMode, int bDestroyOldOnSuccess) { // Handle Weapon change int nCurrApp = GetItemAppearance(oItem, ITEM_APPR_TYPE_WEAPON_COLOR, nPart); int nMin = 1; int nMax = 4; if (nMode == X2_IP_ARMORTYPE_NEXT) { if (++nCurrApp>nMax) nCurrApp = nMin; } else { if (--nCurrAppnMax) nCurrApp = nMin; } else { if (--nCurrAppnMax) nCurrApp = nMin; } else { if (--nCurrAppnMax) nMod = nMin; } else { nMod-=10; if (nMod