[Release] [Zombies] Black Ops 1 Chaos mod
-
why do i have 1m points when i start the game is that normal and is there a way to fix it
@zhyako Fixed
-
This post is deleted!
@dontknowletsplay Nice!!
-
Always nice releases, nice job
-
Can you share the script for the hitmarkers? Thanks.
-
//bo1 zombie hitmarks #include maps\_utility; #include common_scripts\utility; #include maps\_hud_util; init() { if ( GetDvar( #"zombiemode" ) == "1" ) { precacheshader("damage_feedback"); level thread onPlayerConnect(); } } onPlayerConnect() { level endon("end_game"); for(;;) { level waittill("connected", player); player thread onPlayerSpawned(); } } onPlayerSpawned() { self endon("disconnect"); level endon("end_game"); self waittill("spawned_player"); self thread damagehitmarker(); } damagehitmarker() { self thread check_zombies(); self.hitmarker = newclientHudElem( self ); self.hitmarker.horzalign = "center"; self.hitmarker.vertalign = "middle"; self.hitmarker.x = -12; self.hitmarker.y = -12; self.hitmarker.alpha = 0; self.hitmarker setshader( "damage_feedback", 24, 48 ); } check_zombies() { level endon("end_game"); while( 1 ) { zombies = getaiarray( "axis" ); for(i=0;i<zombies.size;i++) { if( !(IsDefined( zombies[i].waitingfordamage )) ) { zombies[i] thread hitmark(); } } wait 0.25; } } hitmark() { level endon("end_game"); self endon( "killed" ); self.waitingfordamage = 1; while( 1 ) { self waittill( "damage", amount, attacker, dir, point, mod ); attacker.hitmarker.alpha = 0; if( isplayer( attacker ) ) { if( isalive( self ) ) { attacker.hitmarker.color = ( 1, 1, 1 ); attacker.hitmarker.alpha = 1; attacker.hitmarker fadeovertime( 1 ); attacker.hitmarker.alpha = 0; } else { attacker.hitmarker.color = ( 1, 0, 0 ); attacker.hitmarker.alpha = 1; attacker.hitmarker fadeovertime( 1 ); attacker.hitmarker.alpha = 0; self notify( "killed" ); } } } } -
//bo1 zombie hitmarks #include maps\_utility; #include common_scripts\utility; #include maps\_hud_util; init() { if ( GetDvar( #"zombiemode" ) == "1" ) { precacheshader("damage_feedback"); level thread onPlayerConnect(); } } onPlayerConnect() { level endon("end_game"); for(;;) { level waittill("connected", player); player thread onPlayerSpawned(); } } onPlayerSpawned() { self endon("disconnect"); level endon("end_game"); self waittill("spawned_player"); self thread damagehitmarker(); } damagehitmarker() { self thread check_zombies(); self.hitmarker = newclientHudElem( self ); self.hitmarker.horzalign = "center"; self.hitmarker.vertalign = "middle"; self.hitmarker.x = -12; self.hitmarker.y = -12; self.hitmarker.alpha = 0; self.hitmarker setshader( "damage_feedback", 24, 48 ); } check_zombies() { level endon("end_game"); while( 1 ) { zombies = getaiarray( "axis" ); for(i=0;i<zombies.size;i++) { if( !(IsDefined( zombies[i].waitingfordamage )) ) { zombies[i] thread hitmark(); } } wait 0.25; } } hitmark() { level endon("end_game"); self endon( "killed" ); self.waitingfordamage = 1; while( 1 ) { self waittill( "damage", amount, attacker, dir, point, mod ); attacker.hitmarker.alpha = 0; if( isplayer( attacker ) ) { if( isalive( self ) ) { attacker.hitmarker.color = ( 1, 1, 1 ); attacker.hitmarker.alpha = 1; attacker.hitmarker fadeovertime( 1 ); attacker.hitmarker.alpha = 0; } else { attacker.hitmarker.color = ( 1, 0, 0 ); attacker.hitmarker.alpha = 1; attacker.hitmarker fadeovertime( 1 ); attacker.hitmarker.alpha = 0; self notify( "killed" ); } } } }@dontknowletsplay How do I use it exactly? When I make the .gsc file and put it in the maps folder it just shows an error message when loading into the map. I gave it a random name, could that be the problem?
-
@dontknowletsplay How do I use it exactly? When I make the .gsc file and put it in the maps folder it just shows an error message when loading into the map. I gave it a random name, could that be the problem?
Schnaz i changed the code little so copy it again and save with .gsc extension and move to
%localappdata%\Plutonium\storage\t5\scripts\sp -
Schnaz i changed the code little so copy it again and save with .gsc extension and move to
%localappdata%\Plutonium\storage\t5\scripts\sp@dontknowletsplay Thank you so much, works perfectly.
-
This post is deleted!
@dontknowletsplay how do you assign a key to start game
-
@dontknowletsplay said in [Release] [Zombies] Black Ops 1 Chaos mod:
%localappdata%\Plutonium\storage\t5
I put the folder in %localappdata%\Plutonium\storage\t5/maps
how to I load the game mode when I go to mods there is nothing -
Emu_op keys are always same. Jump, shoot and use button but it can show undefined or something not sure why that happened even player had his buttons set up correctly.
-
@dontknowletsplay said in [Release] [Zombies] Black Ops 1 Chaos mod:
%localappdata%\Plutonium\storage\t5
I put the folder in %localappdata%\Plutonium\storage\t5/maps
how to I load the game mode when I go to mods there is nothingfecalfantom it doesn't show up in mods. Start some map and it will load up.
-
This is a very fun mod! The "out of body experience" Is a bit bugged Bullets wont damage zombies and player model occasionally goes invisible. Haven't noticed any other bugs but I figured I'd Let you know in case you would like to fix it. Thanks for the awesome mod!
-
This is a very fun mod! The "out of body experience" Is a bit bugged Bullets wont damage zombies and player model occasionally goes invisible. Haven't noticed any other bugs but I figured I'd Let you know in case you would like to fix it. Thanks for the awesome mod!
PandaGora24 Thats sadly unfixable what i have tested. Player only shoot one way even while trying to look another way is which causes that damage problem.
-
[ UPDATE ] Added mod file for easier installion
I have seen few people asking how to install it so i decided to add mod file aswell. I will be creating plutonium t5 mod file installer and add it to this mod later.

-
UPDATE
Has now mod installer which was written in python and compiled to exe with pyinstaller.

-
Fixed some problems with call of the dead.
-
it doesnt work for me when i turn on the mod its like a normal zombies

-
wejwur I am not sure what to say it works fine for me. I used the installer to install the mod.
-
undefined bhfff referenced this topic on
-
thanks
Hello! It looks like you're interested in this conversation, but you don't have an account yet.
Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.
With your input, this post could be even better 💗
Register Login