PRC8/nwn/nwnprc/trunk/scripts/ow_sum_sham.nss
Jaysyn904 6ec137a24e Updated AMS marker feats
Updated AMS marker feats.  Removed arcane & divine marker feats.  Updated Dread Necromancer for epic progression. Updated weapon baseitem models.  Updated new weapons for crafting & npc equip.
 Updated prefix.  Updated release archive.
2024-02-11 14:01:05 -05:00

113 lines
3.7 KiB
Plaintext

//::///////////////////////////////////////////////
//:: Orc Warlord
//:://////////////////////////////////////////////
/*
Gather Horde - Summons an shaman of proper level as a henchmen.
*/
//:://////////////////////////////////////////////
//:: Created By: Oni5115
//:://////////////////////////////////////////////
/*#include "prc_class_const"
#include "prc_feat_const"*/
#include "prc_inc_util"
// sets how many of a specific orc can be summoned
const int iNumSummon = 2;
void CleanHenchman(object oImage)
{
SetLootable(oImage, FALSE);
object oItem = GetFirstItemInInventory(oImage);
while(GetIsObjectValid(oItem))
{
SetDroppableFlag(oItem, FALSE);
SetItemCursedFlag(oItem, TRUE);
oItem = GetNextItemInInventory(oImage);
}
int i;
for(i=0;i<NUM_INVENTORY_SLOTS;i++)//equipment
{
oItem = GetItemInSlot(i, oImage);
SetDroppableFlag(oItem, FALSE);
SetItemCursedFlag(oItem, TRUE);
}
TakeGoldFromCreature(GetGold(oImage), oImage, TRUE);
}
int GetCanSummonOrc(object oPC, string sCreatureResRef)
{
int bCanSummon;
int iNumOrc = 0;
object oHench1 = GetHenchman(oPC, 1);
object oHench2 = GetHenchman(oPC, 2);
object oHench3 = GetHenchman(oPC, 3);
object oHench4 = GetHenchman(oPC, 4);
if(GetResRef(oHench1) == sCreatureResRef) iNumOrc += 1;
if(GetResRef(oHench2) == sCreatureResRef) iNumOrc += 1;
if(GetResRef(oHench3) == sCreatureResRef) iNumOrc += 1;
if(GetResRef(oHench4) == sCreatureResRef) iNumOrc += 1;
if(iNumSummon > iNumOrc) bCanSummon = TRUE;
else bCanSummon = FALSE;
return bCanSummon;
}
void main()
{
object oPC = OBJECT_SELF;
if(GetPRCSwitch(PRC_ORC_WARLORD_COHORT))
{
FloatingTextStringOnCreature("This has been disabled.", oPC);
return;
}
int iOrcWarlordLevel = GetLevelByClass(CLASS_TYPE_ORC_WARLORD, oPC);
int iHD = GetHitDice(oPC);
int iMaxHenchmen = GetMaxHenchmen();
SetMaxHenchmen(99);
// if(GetNumHenchmen(oPC) < iMaxHenchmen)
// {
string sSummon;
object oCreature;
effect eSummon = EffectVisualEffect(VFX_FNF_LOS_NORMAL_30);
effect eVis = EffectVisualEffect(VFX_FNF_SUMMON_MONSTER_1);
if (iHD >= 39) sSummon = "ow_sum_sham_12";
else if (iHD >= 36) sSummon = "ow_sum_sham_11";
else if (iHD >= 33) sSummon = "ow_sum_sham_10";
else if (iHD >= 30) sSummon = "ow_sum_sham_9";
else if (iHD >= 27) sSummon = "ow_sum_sham_8";
else if (iHD >= 24) sSummon = "ow_sum_sham_7";
else if (iHD >= 21) sSummon = "ow_sum_sham_6";
else if (iHD >= 18) sSummon = "ow_sum_sham_5";
else if (iHD >= 15) sSummon = "ow_sum_sham_4";
else if (iHD >= 12) sSummon = "ow_sum_sham_3";
else if (iHD >= 9) sSummon = "ow_sum_sham_2";
else if (iHD >= 6) sSummon = "ow_sum_sham_1";
if(GetCanSummonOrc(oPC, sSummon))
{
oCreature = CreateObject(OBJECT_TYPE_CREATURE, sSummon, GetSpellTargetLocation());
DelayCommand(1.0f, CleanHenchman(oCreature));
AddHenchman(OBJECT_SELF, oCreature);
ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eVis, GetSpellTargetLocation());
}
else
{
string sMes = "You cannot gather more than " + IntToString(iNumSummon) + " of this type of orc.";
SendMessageToPC(oPC, sMes);
if(GetHasFeat(FEAT_GATHER_HORDE_II, oPC))
IncrementRemainingFeatUses(oPC, FEAT_GATHER_HORDE_II);
else
IncrementRemainingFeatUses(oPC, FEAT_GATHER_HORDE_I);
}
// }
SetMaxHenchmen(iMaxHenchmen);
}