NWN2 Visual Effect tutorial?

Hi!
how I can create custom spell effects? vfx
(lightning)
Please advise me what to do?(Any tutorial vfx ?)
Any help in the matter would be greatly appreciated.
Thanks in advance.

@kamal wrote a good guide on this topic:
https://neverwintervault.org/project/nwn2/other/visual-effect/nwn2-particle-effects-tutorial

There’s also another guide:
https://neverwintervault.org/project/nwn2/other/nwn2-tutorial-effects-editor

Some notes can be found in @rjshae’s toolset guide:
https://neverwintervault.org/project/nwn2/other/tool/nwn2-toolset-guide

2 Likes

Thank you very much!

Respected Aqvilinus.

I created a new effect
Thank you for your help! :slight_smile:

The script for this spell (nw_s0_lghtnbolt) uses two visual effects:

    effect eLightning = EffectBeam(VFX_BEAM_LIGHTNING, OBJECT_SELF, BODY_NODE_HAND);
    effect eVis  = EffectVisualEffect(VFX_HIT_SPELL_LIGHTNING);

VFX_BEAM_LIGHTNING β†’ sp_lightning_ray.sef
VFX_HIT_SPELL_LIGHTNING β†’ sp_lightning_hit.sef

Ah, ok then :slightly_smiling_face:

2 Likes