Yeah after 400 missions ported, it's possible that I've made a mistake or two...Thank you for letting me know for the exit, I will update it (a massive update is coming). I don't think I can do something for the kill condition since it was ported from hitman 2016 and the condition doesn't seem to exist in H3 I imagine. Unfortunately, I don't think it's possible to show the item to pick on the map without a brick... I've not succeed to show it myself sorry
Viewing post in HITMAN 3 Mod Framework incl. Offline Content comments
Here are some of my suggestions for modifying the kill condition:
In json, the statements related to the kill condition are as follows:
"TargetConditions": [
{
"Type": "weapontype",
"RepositoryId": "d075aa8e-f334-4fa1-880f-525b0e531ec6",
"HardCondition": true
}
]
This is a condition for using a shotgun as a weapon, but it cannot be displayed correctly on the UI. I tried to change it to the following and it can be displayed.
"TargetConditions": [
{
"Type": "killmethod",
"KillMethod":"shotgun",
"HardCondition": true
}
]