dual Cz-75 crash
-
Re: game crashes as soon as i get dual wield cz75
Hi, first of all I know that this bug has ben reported in several times before this one, but I would like to ask if someone has a temporary fix or at least a way so the gun don't pop up in the box. I've been careful about picking it from the box, but it always ends up happening, and you know that it kinda sucks to lose a fire sale because of this or picking it up by not looking at the box at the time you spin it.
For those who don't know when you get a cz75 akimbo from the box this ones crashes your game (at least in solo and in all the maps that i have played)
thanks for your time reading this, please tell me when this bug is fixed, or if you have a simple solution, and apologies if I spelled something wrong I'm hispanic.
Greetings to all of you, have a great day.
-
RudeRenX it’s fixed in the testing version
so if u want access to that donate.
also you could just remove the weapon from your game via using a mod/removing it from the common zombie.ff -
You can use this script I made until we release a new update. Just make a .gsc file and copy everything in this code box into your .gsc file. After saving, put it in
%localappdata%\plutonium\storage\t5\scripts\sp\zom
. May have to fully restart your game until you see your player name followed by "has connected" on the top left, that's when you know the script has loaded.init(){ level thread remove_magicbox_weapon( "cz75dw_zm" ); } remove_magicbox_weapon( weapon ) { if(!isDefined(weapon)) { weapon = ""; } if(isDefined(weapon) && maps\_zombiemode_weapons::get_is_in_box(weapon) == true ) { level.zombie_weapons[weapon].is_in_box = false; } }
-
Pistakilla how do I make a gsc file? I have looked around and can't figure it out.
-
just rename .txt to .gsc
-
hindercanrun Where do I take the code, how do I turn the code into a file?
-
xsfbfb simply copy the text, paste it in a notepad and save the file with a .gsc extension
This could give you an idea (this is for IW5 but the idea is the same)
https://github.com/Resxt/Plutonium-IW5-Scripts#how-do-i-download-a-script -
make a .txt rename it to .exe then paste what pistakilla said then compile it using a compiler
-
Resxt said in dual Cz-75 crash:
xsfbfb simply copy the text, paste it in a notepad and save the file with a .gsc extension
This could give you an idea (this is for IW5 but the idea is the same)
https://github.com/Resxt/Plutonium-IW5-Scripts#how-do-i-download-a-scriptthanks
-
-
Pistakilla thank you for the code!