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.
35 lines
929 B
Plaintext
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);
|
|
} |