Battledale_PRC8/_module/nss/x2_im_finished.nss
Jaysyn904 7b9e44ebbb Initial upload
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.
2024-03-11 23:44:08 -04:00

137 lines
4.2 KiB
Plaintext

//////////////////////////////////////////////////////////
/*
Item Appearance Modification Conversation
Finish Conversation Script
*/
// created/updated 2003-06-24 Georg Zoeller, Bioware Corp
//////////////////////////////////////////////////////////
#include "prc_x2_craft"
#include "jw_inc_craft"
void main()
{
object oPC = GetPCSpeaker();
if (CIGetCurrentModMode(GetPCSpeaker()) != X2_CI_MODMODE_INVALID )
{
object oBackup = CIGetCurrentModBackup(oPC);
int nCost = GetLocalInt(oPC,"X2_TAILOR_CURRENT_COST");
int nDC = GetLocalInt(oPC,"X2_TAILOR_CURRENT_DC");
if (GetGold(oPC) >= nCost)
{
TakeGoldFromCreature(nCost,oPC,TRUE);
}
else
{
FloatingTextStrRefOnCreature(83447,oPC);
ExecuteScript ("x2_im_cancel", OBJECT_SELF);
return;
}
int bSuccess = FALSE;
// Palmer Add in to just run the cancel script if nDC==0;
if (nDC==0)
{
bSuccess = TRUE;
}
else
{
if (CIGetCurrentModMode(oPC) == X2_CI_MODMODE_ARMOR)
{
if ( GetIsSkillSuccessful(oPC,SKILL_CRAFT_ARMOR,nDC))
{
//FloatingTextStrRefOnCreature(83449,oPC);
bSuccess = TRUE;
}
}
else if (CIGetCurrentModMode(oPC) == X2_CI_MODMODE_WEAPON)
{
if ( GetIsSkillSuccessful(oPC,SKILL_CRAFT_WEAPON,nDC))
{
bSuccess = TRUE;
//FloatingTextStrRefOnCreature(83449,oPC);
}
}
else if (CIGetCurrentModMode(oPC) == X2_CI_MODMODE_HELMET)
{
if ( GetIsSkillSuccessful(oPC,SKILL_CRAFT_ARMOR,nDC))
{
bSuccess = TRUE;
//FloatingTextStrRefOnCreature(83449,oPC);
}
}
else if (CIGetCurrentModMode(oPC) == X2_CI_MODMODE_SHIELD)
{
if ( GetIsSkillSuccessful(oPC,SKILL_CRAFT_WEAPON,nDC))
{
bSuccess = TRUE;
//FloatingTextStrRefOnCreature(83449,oPC);
}
}
}
if (!bSuccess)
{
FloatingTextStrRefOnCreature(83448,oPC);
// run the cleanup script
ExecuteScript ("x2_im_cancel", OBJECT_SELF);
return;
}
object oNew = CIGetCurrentModItem(oPC);
// remove the death int
DeleteLocalInt(oNew,"jw_craft_copy");
AssignCommand(oPC,ClearAllActions(TRUE));
if (CIGetCurrentModMode(oPC) == X2_CI_MODMODE_ARMOR)
{
AssignCommand(oPC, ActionEquipItem(oNew,INVENTORY_SLOT_CHEST));
}
else if (CIGetCurrentModMode(oPC) == X2_CI_MODMODE_WEAPON)
{
AssignCommand(oPC, ActionEquipItem(oNew,INVENTORY_SLOT_RIGHTHAND));
}
else if (CIGetCurrentModMode(oPC) == X2_CI_MODMODE_HELMET)
{
AssignCommand(oPC, ActionEquipItem(oNew,INVENTORY_SLOT_HEAD));
}
else if (CIGetCurrentModMode(oPC) == X2_CI_MODMODE_SHIELD)
{
AssignCommand(oPC, ActionEquipItem(oNew,INVENTORY_SLOT_LEFTHAND));
}
///----------------------------------------------------------------------
// This is to work around a problem with temporary item properties
// sometimes staying around when they are on a cloned item.
//----------------------------------------------------------------------
IPRemoveAllItemProperties(oNew,DURATION_TYPE_TEMPORARY);
DeleteLocalInt(oPC,"X2_TAILOR_CURRENT_COST");
DeleteLocalInt(oPC,"X2_TAILOR_CURRENT_DC");
CISetCurrentModMode(oPC,X2_CI_MODMODE_INVALID );
// remove backup
DestroyObject(oBackup);
}
else
{
ClearAllActions();
}
// Remove custscene immobilize from player
effect eEff = GetFirstEffect(oPC);
while (GetIsEffectValid(eEff))
{
if (GetEffectType(eEff) == EFFECT_TYPE_CUTSCENEIMMOBILIZE
&& GetEffectCreator(eEff) == oPC
&& GetEffectSubType(eEff) == SUBTYPE_EXTRAORDINARY )
{
RemoveEffect(oPC,eEff);
}
eEff = GetNextEffect(oPC);
}
RestoreCameraFacing() ;
ExportSingleCharacter(oPC);
}