Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

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

          }

        ]

It's fixed !