Question Zombies mod menu that doesn't remove death barriers?

Blaidan

New Member
Messages
2
Reaction score
0
Points
1
I'm looking for a bo2 zombies mod menu that doesn't remove death barriers. Other menus I've tried allow me to be in unintended areas without dying but I need a tool that will let me test this stuff in real game conditions. I'm specifically trying to test stuff with the death barrier on Origins that surrounds the first lightning staff part.
 

CF4_99

Veteran
Messages
145
Reaction score
57
Points
888
I'm looking for a bo2 zombies mod menu that doesn't remove death barriers. Other menus I've tried allow me to be in unintended areas without dying but I need a tool that will let me test this stuff in real game conditions. I'm specifically trying to test stuff with the death barrier on Origins that surrounds the first lightning staff part.

They are disabling death barriers like this:
Code:
level.player_out_of_playable_area_monitor = 0;

You can enable them like this:
Code:
level.player_out_of_playable_area_monitor = 1;
 

Blaidan

New Member
Messages
2
Reaction score
0
Points
1
They are disabling death barriers like this:
Code:
level.player_out_of_playable_area_monitor = 0;

You can enable them like this:
Code:
level.player_out_of_playable_area_monitor = 1;
How would I go about doing this? Can I just edit the .gsc/.gscr itself or would I have to make a whole new mod myself?
 

djibrilhar

Insane-Known Member
Messages
3
Reaction score
0
Points
351
How would I go about doing this? Can I just edit the .gsc/.gscr itself or would I have to make a whole new mod myself?
You would have to decompile the menu to change it, or you can make a menu with someone elses menu base
 

CF4_99

Veteran
Messages
145
Reaction score
57
Points
888
You would have to decompile the menu to change it, or you can make a menu with someone elses menu base
You can't just decompile a gsc, change what you want, then re-compile. You would have a crazy amount of sytax errors that would take a good amount of time and guessing.
 
Top