I'm New to Scripting. Need help locating (Vanilla Sounds, Effects for NWN2 EE Aurora toolset 1.88)
Syro
Member Posts: 1
I can't for the life of me find the effects and sound files. can you help me? all i can find is this acid and the moo for the cow..
Where do i locate the soundfiles and effect files for the vanilla NWN2 EE Aurora toolset 1.88?
ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_ACID_L), oPC);
PlaySound("as_an_cow2");
Where do i locate the soundfiles and effect files for the vanilla NWN2 EE Aurora toolset 1.88?
ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_ACID_L), oPC);
PlaySound("as_an_cow2");
0
Comments
The easiest way to find and listen to all the sounds is: Place a new sound object. Open the properties on it. Click the 'Add Sounds...' button. Wait awhile for it to load. You can play the sounds from in there and copy the names.
With the copied sound names, you can paste them into your PlaySound() calls.
Effects are defined by constants. On the right side of the Script Editor, click constants. Filter by VFX_. That will list out all the visual effects. (IMP means impulse. DUR means duration. FNF means fire and forget. You should be able to figure out the rest.)