here's what happens:

I have not changed the script of SoV.
someone can give me an explanation?
Modifié par Cursed Eclipse, 28 novembre 2013 - 05:30 .

Modifié par Cursed Eclipse, 28 novembre 2013 - 05:30 .
Ty vm for your help,LightfootLightfoot8 wrote...
If it is not the SoV script doing it. there must then be another script firing that is causing the effect. I can think of two possible places where it could have been triggered.
The first is the spell hook. If you have a spell hook set up in the standard nwn script set. There will be a var on the module ( X2_S_UD_SPELLSCRIPT ) that will name the script that is being ran. The var may be set in the module on load event or in the toolset.
Or someone may have placed the code into the On Spell Cast At event for the creatures.
If you do not find it searching out the two cases above. you can always turn on script logging in Nwnplayer.ini.
under [Script Options] set Enable Logging=1
You could then check your log file and see what scripts are running when SoV is being cast.
object oItem;
oItem = GetFirstItemInInventory();
while (GetIsObjectValid(oItem))
{
DestroyObject(oItem);
oItem = GetNextItemInInventory();
} Modifié par Cursed Eclipse, 28 novembre 2013 - 07:50 .