Handy VFX
⚪ Last updated 2014Preview

🔍 Analysis
- 🏆 #9 of 24 Visuals and Graphics mods in this game by downloads
📋 About This Mod
Visual effects that put various items into a creature's hands without the need to spawn or equip items.
Visual effects that put various items into a creature's hands without the need to spawn or equip items.
- fx_handl_stein (beer stein left hand - sitdrink animation)
- fx_handl_wine (wine bottle left hand - sitdrink animation)
- fx_handl_chalice (chalice left hand - sitdrink animation)
- fx_handr_stein (beer stein right hand - drink and beerdrink animations)
- fx_handr_wine (wine bottle right hand - drink and beerdrink animations)
- fx_handr_chalice (chalice right hand - drink and beerdrink animations)
- fx_handr_book (open book right hand - read and sitread animations)
- fx_handr_rake (rake right hand - raking animation)
- fx_handr_spoon (spoon right hand - cooking01 animation)
- fx_handr_smithhammer (smith hammer right hand - craft or forge animation)
The rake model in the game faces the wrong way. I have corrected this (and made further tweaks) using Adinos's MDB Manipulation Tool. See the 'Files' section above.
Script examples for applying and removing the effects:
I tend to assign VFX to a spell ID, then use the RemoveEffectsFromSpell function in nw_i0_spells to remove the VFX without removing other spell effects. I use the light spell, since its ID is easy to remember (100) and it's not likely to be used by NPCs (and can't be cast on hostile creatures).
The sVFX string can be changed as necessary to apply the other VFX. It can also be stored as a local string variable on a creature or usable item, for use in a generic script.
//Apply visual effect to creature void main() { object oTarget = string sVFX = "fx_handl_stein.sef"; //Assign VFX to spell id 100 (light spell) effect eDrink = SetEffectSpellId(EffectNWN2SpecialEffectFile(sVFX), 100); SetWeaponVisibility(oTarget, 0, 0);//Make weapons and shields invisible ApplyEffectToObject(DURATION_TYPE_PERMANENT, eDrink, oTarget); }
- -
- //Remove visual effect from creature
- #include "nw_i0_spells"
void main() { object oTarget = //Remove all effects linked to spell id 100 (light spell) RemoveEffectsFromSpell(oTarget, 100); SetWeaponVisibility(oTarget, 1, 0);//Make weapons and shields visible again }
📊 Mod Details
- Game
- Neverwinter2 Mods
- Author
- Dann Pigdon
- Version
- 1.0
- Downloads
- 388
- Endorsements
- 20
- Category
- Visuals and Graphics
- Created
- 6/12/2012
- Updated
- 1/28/2014
- Tags
- Modder's Resource
🔧 How to Install Neverwinter Nights 2 Mods
Install via a mod manager (Vortex or Mod Organizer 2). Most mods drop into the game folder.
📖 Full step-by-step install guide for Neverwinter Nights 2 →
Visit the official mod page for specific installation instructions for this mod.
🎮 Need cheat codes or console commands? Check ur gaming wiki for Neverwinter Nights 2 commands, item IDs, and more.
Keep browsing — more Neverwinter Nights 2 mods await