Is there a way to do this?
I know it's possible to read the current violence level setting via metarule(48) or if Fallout 2, script command violence_level_setting, but I see no way to actually change it via script.
It can be set via fallout.cfg of course, but unfortunately that is overridden whenever the game is loaded.
Thanks
I know it's possible to read the current violence level setting via metarule(48) or if Fallout 2, script command violence_level_setting, but I see no way to actually change it via script.
It can be set via fallout.cfg of course, but unfortunately that is overridden whenever the game is loaded.
Thanks
Code:
#define METARULE_VIOLENCE_FILTER 48
#define violence_filter_setting metarule(METARULE_VIOLENCE_FILTER, 0)
#define VLNCLVL_NONE 0 // Violence Level settings.
#define VLNCLVL_MIN 1
#define VLNCLVL_NORMAL 2
#define VLNCLVL_MAX 3