PRC8/trunk/scripts/prc_chngshp_opts.nss

30 lines
872 B
Plaintext
Raw Normal View History

//:://////////////////////////////////////////////
//:: 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);
StartDynamicConversation("prc_chngshp_conv", oPC, DYNCONV_EXIT_ALLOWED_SHOW_CHOICE, TRUE, FALSE, oPC);
}