Zombies noclip ends games
-
Every time I try to noclip on a customs or solo zombies game it instantly downs me and ends the game if I go to far out. I have enabled god mode and it doesn't stop this issue. Is there another way to stop this from happening?
-
I also have this issue. Looking for some help on this.
-
This noclip that devs added to pluto isn't like the vanilla noclip from previous cods, that's why you're dying all the time. You would have to create a script to remove death barriers in order to fly around without any restrictions.
-
@Pistakilla Actually its the same but since the scripts check if you leave the playable area and disable god mode to kill you, you end up dying no matter what.
Try setting this variable in a custom script:
level.player_out_of_playable_area_monitor = false;
-
@JezuzLizard I'm not the smartest when it comes to making scripts or adding them. How would I?
-
So basically what is explained in the documentation https://plutonium.pw/docs/modding/loading-mods/#t6
You create a script with the code mentioned in
init()
so that it's executed right when you start the game and put it in the right folder so that Plutonium will load the script when you start the game.
This would look like this.init() { level.player_out_of_playable_area_monitor = false; }
T6 is a bit special because you have to compile the script (it's a simple drag and drop on a file)
I compiled the script for you: https://www.mediafire.com/file/kq3bt2a0j4son50/no_clip_prevent_death-compiled.gsc/fileSimply drop the file in
%localappdata%\Plutonium\storage\t6\scripts\zm
like mentioned in the documentation I linked and you won't die anymore when usingnoclip