if you have trouble to fire this in v.4.04, then do the following:
1. you need to find original npc.ws file in your Witcher 3 directory ( default in \\SteamLibrary\steamapps\common\The Witcher 3\content\content0\scripts\game\npc\ )
2. locate the mod npc.ws file in Mods directory ( default in \\SteamLibrary\steamapps\common\The Witcher 3\mods\modMasterMarksmanTracker\content\scripts\game\npc\ )
4. copy original npc.ws file from point 1 to Mod folder taken from point 2 5. open copied npc.ws file from Mods directory in any editor eg. notepad 6. locate this line "if (damageAction.GetIsHeadShot() && monsterCategory == MC_Human )" (w/o quotes). It's around 2737 line 7. change this lane into this:
Thanks to this mod I figured out the headshot's hitboxes. Have an enemy low health, be close about 5 meters and aim at their forehead (slightly above eyes).
Thank you very much! This is a very useful mod indeed. Do you have any plans on creating other achievement trackers? Overkill or That Is the Evilest Thing, for example?
You can try to merge it manually I guess. I would have helped you but I don't currently have internet bandwidth to install Ghost mode and never used it :(
11 comments
1. you need to find original npc.ws file in your Witcher 3 directory ( default in \\SteamLibrary\steamapps\common\The Witcher 3\content\content0\scripts\game\npc\ )
2. locate the mod npc.ws file in Mods directory ( default in \\SteamLibrary\steamapps\common\The Witcher 3\mods\modMasterMarksmanTracker\content\scripts\game\npc\ )
4. copy original npc.ws file from point 1 to Mod folder taken from point 2
5. open copied npc.ws file from Mods directory in any editor eg. notepad
6. locate this line "if (damageAction.GetIsHeadShot() && monsterCategory == MC_Human )" (w/o quotes). It's around 2737 line
7. change this lane into this:
if (damageAction.GetIsHeadShot() && monsterCategory == MC_Human ) {
theGame.GetGamerProfile().IncStat(ES_HeadShotKills);
theGame.GetGuiManager().ClearNotificationsQueue();
theGame.GetGuiManager().ShowNotification(
"Headshot #<font color=\"#7A1515\">"
+ theGame.GetGamerProfile().GetStatValue(ES_HeadShotKills)
+ "</font>"
);
}
8. Save and run the game
Do you have any plans on creating other achievement trackers? Overkill or That Is the Evilest Thing, for example?
Let's see if I get time next weekend :)
Update: Here you go my friend, Achievement Progress Tracker
Even though your mod barely changes anything in there! Error on my part or trouble with your npc.ws file?
I would have helped you but I don't currently have internet bandwidth to install Ghost mode and never used it :(