Files
PRC8/nwn/nwnprc/trunk/scripts/prc_chngshp_opts.nss
Jaysyn904 0f1c10c279 2026/01/26 Update
Added Wispling race.
Wispling qualifies for Shifter (PnP).
Bioware poisons now work with "new" PRC8 weapons.
Updated PRC8 Tester mod store to have Bioware venoms.
Updated PRC8 version.
Added Alchemy expansion notes.
Updated Starting package TLK notes.
2026-01-20 09:11:57 -05:00

33 lines
1000 B
Plaintext

//:://////////////////////////////////////////////
//:: Change Shape - Start options conversation
//:: prc_chngshp_opts
//:://////////////////////////////////////////////
/** @file
Starts the Change Shape Options dynamiv conversation.
@author Shane Hennessy
@date Modified - 2006.10.08 - rewritten by Ornedan - modified by Fox
*/
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//#include "prc_inc_shifting"
#include "inc_dynconv"
#include "prc_alterations"
void main()
{
object oPC = OBJECT_SELF;
SetLocalInt(oPC, "ChangeShapeConfig", GetSpellId());
if(GetSpellId() == SPELL_IRDA_CHANGE_SHAPE_OPTIONS)
IncrementRemainingFeatUses(oPC, FEAT_IRDA_CHANGE_SHAPE);
if(GetSpellId() == SPELL_WISPLING_CHANGE_SHAPE_OPTIONS)
IncrementRemainingFeatUses(oPC, FEAT_WISPLING_CHANGE_SHAPE);
StartDynamicConversation("prc_chngshp_conv", oPC, DYNCONV_EXIT_ALLOWED_SHOW_CHOICE, TRUE, FALSE, oPC);
}