PRC8/nwn/nwnprc/trunk/newspellbook/moi_invessentia.nss
Jaysyn904 d87fe14826 Further file organization
Further file organization
2023-08-23 22:11:00 -04:00

13 lines
460 B
Plaintext

#include "moi_inc_moifunc"
#include "inc_dynconv"
void main()
{
object oMeldshaper = OBJECT_SELF;
if (GetLocalInt(oMeldshaper, "PerfectMeldshaper")) return;
if (GetLocalInt(oMeldshaper, "TotemEmbodiment")) return;
if (GetLocalInt(oMeldshaper, "TotemEmbodiment2")) return;
AssignCommand(oMeldshaper, ClearAllActions(TRUE));
StartDynamicConversation("moi_essentiacnv", oMeldshaper, DYNCONV_EXIT_ALLOWED_SHOW_CHOICE, FALSE, TRUE, oMeldshaper);
}