Jaysyn904 39e766ef24 Updated DM Spirit NPC conversation
Updated DM Spirit NPC conversation.  Updated release archive.
2025-03-24 19:44:11 -04:00

13 lines
523 B
Plaintext

void main()
{
object oTarget = GetPCSpeaker();
effect eStone = EffectPetrify();
//float nDelay = IntToFloat(Random(60)+1);
int nRandom = 4 + d4(1);
AssignCommand(oTarget, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_DUR_PETRIFY), GetLocation(oTarget)));
AssignCommand(oTarget, ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eStone, oTarget, TurnsToSeconds(nRandom)));
//DelayCommand(nDelay, ActionCastSpellAtObject(SPELL_STONE_TO_FLESH, oTarget, METAMAGIC_NONE, TRUE));
}