r0ckwolf Posted March 6 Share Posted March 6 (edited) Hi, i recenty published this Mod for Witcher 3: https://www.nexusmods.com/witcher3/mods/10502?tab=description i´m still working on it and i have the following issue: There are some enemys specifically in the dlc areas (HoS Fallen Knights f.e.) that cannot be killed with finishers, because they have the "disablefinisher" tag. I am endlessly annoyed by this and wish to "fix" this. I have found a workaround thanks to another mod author, by removing the "disablefinisher" tag globally in the damageManagerProcessor.ws. However this causes some enemies to get bugged, like the dwarves in novigrad, because there models don´t support finishers i suppose and they start to levitate for a couple of seconds, when geralt is trying to finish them. so here is my question: How can i remove the "disablefinisher" tag for specific enemies or determine how it´s getting applied. I have been unfortunately unsuccessful in finding any way to do this. Help would be so much appreciated. Greetings r0ckwolf Edited March 6 by r0ckwolf Link to comment Share on other sites More sharing options...
Warhiz24 Posted March 13 Share Posted March 13 (edited) did you try if( actorVictim.HasAbility( 'DisableDismemberment' ) ) { dismember = true; } else if( actorVictim.HasTag( 'DisableDismemberment' ) ) { dismember = true; I tried it myself , before when spawning dwarf , there was no Dismember. after: I did get an Dismember animation but it was a bit gltiched, (they all hit a T pose) but the npc did die at least. maybe if they have disable finisher tag it would prority the dismember with this, so its not as visible. worth a try I guess. (all this code I am talking about is in damageManagerProcessor file ) Edited March 13 by Warhiz24 Link to comment Share on other sites More sharing options...
Warhiz24 Posted March 13 Share Posted March 13 (edited) https://imgur.com/a/fCABPY5 I tried your "disablefinisher" tag globally in the damageManagerProcessor.ws" but I did not have any issue with finisher , it just does what is shown on video. (I mean there is no finisher option it just goes to Dismemberment) Edited March 13 by Warhiz24 Link to comment Share on other sites More sharing options...
Recommended Posts