billybob72 Posted August 27, 2017 Share Posted August 27, 2017 Hey Guys, Just a couple quick questions, - I was wondering how to change the amount of Food and H2O restored when eating a corpse with the cannibal perk?- Is it possible to make human flesh appear on corpses via leveled lists but have it linked to only appearing if the cannibal perk has been taken?- Is it possible to make it a requirement to have a knife (other bladed implement) to harvest human flesh if the above is unachievable? any help is greatly appreciated :) Link to comment Share on other sites More sharing options...
Commando62 Posted August 28, 2017 Share Posted August 28, 2017 Not sure how to do point 2 but i will point you in the right direction for points 1 and 3. Go to Perks in the GECK and look up the Cannibal perk; edit it and go to the only perk entry and select to edit it; On the right of the perk entry edit interface there will be a botton that allows you to edit script or recompile script. Hit edit and it will open the script which makes the cannibal perk work. From here its easy to do Point 1 as the script already has the line Player.RestoreAv Hunger 25. So you can change that to whatever you please aswell as add Player.RestoreAv Dehydration X with X being the H2O value you want. Point 3 is slightly harder. You can use the function IsWeaponInList to check if the currently equiped weapon is part of a form list such as RepairKnife; there may be another function which is similar but checks the inventory but im not aware of it. Once you have checked for a knife simply add Human meat by using the AddItem function. Point 3 Example: if player.IsWeaponInList RepairKnife player.additem 0003404f Xendif 0003404f Being the ID of Human Flesh and X being the number you want to add. Link to comment Share on other sites More sharing options...
billybob72 Posted August 28, 2017 Author Share Posted August 28, 2017 Thanks heaps for the info! :) Link to comment Share on other sites More sharing options...
Recommended Posts