PRC8_fork/trunk/newspellbook/inv_hmndshp_opts.nss
Jaysyn904 1662218bb4 Initial upload.
Adding base PRC 4.19a files to repository.
2022-10-07 13:51:24 -04:00

35 lines
929 B
Plaintext

//:://////////////////////////////////////////////
//:: Humanoid Shape - Start options conversation
//:: inv_hmndshp_opts
//:://////////////////////////////////////////////
/** @file
Starts the Change Shape Options dynamiv conversation.
@author Shane Hennessy
@date Modified - 2006.10.08 - rewritten by Ornedan - modified by Fox
*/
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
#include "inc_dynconv"
#include "inv_inc_invfunc"
#include "inv_invokehook"
void main()
{
if (!PreInvocationCastCode())
{
// If code within the PreSpellCastHook (i.e. UMD) reports FALSE, do not run this spell
return;
}
// End of Spell Cast Hook
object oPC = OBJECT_SELF;
SetLocalInt(oPC, "ChangeShapeConfig", GetSpellId());
StartDynamicConversation("prc_chngshp_conv", oPC, DYNCONV_EXIT_ALLOWED_SHOW_CHOICE, TRUE, FALSE, oPC);
}