Skip to content
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Donate
Collapse

Plutonium

JezuzLizardundefined

JezuzLizard

@JezuzLizard
Plutonium Staff
About
Posts
919
Topics
17
Shares
0
Groups
3
Followers
228
Following
85

Posts

Recent Best Controversial

  • Looking forward to alter weapons stats & perks in zombies
    JezuzLizardundefined JezuzLizard

    I have the file you are looking for and I'll upload it but it really isn't useful to what I assume you want to change. https://drive.google.com/file/d/1sFnNDvQYyl6zoSDsdkEodkxOaO0Ps4SM/view?usp=sharing

    If you want to modify weapon stats you'll need to modify the weapon files and unfortunately weapon modding doesn't exist in T6 yet.

    BO2 Modding Support & Discussion

  • [Support] Pausing zombies game
    JezuzLizardundefined JezuzLizard

    HasjBlok I think I have a way to pause a zombies game with just setting dvars. After some testing I have good reason to believe this method will work in a multiplayer game. First what you need to do is have each client set "cl_timeout 3600" in the console. Double check to make sure its set to 3600. The method of pausing the game requires you to set "sv_running" to 0 on the server, this will cause all clients to have a connection interrupted to appear on their screen but thats because the server isn't running anymore. The dvar "cl_timeout" is how long the client will wait for the server to come back if its down in seconds. This means you have 3600 seconds to set "sv_running" back to 1 before the clients will disconnect. If you can set "timescale" on the server the length of time you can have is affected so setting "timescale 0.1" would give 10x the time.

    I haven't done too much testing so I'm not sure if its a 100% sure fire solution so I recommend testing it a bit before using this method in a real game.

    BO2 Modding Support & Discussion

  • How to manage grief teams in zombies without using a dedicated server
    JezuzLizardundefined JezuzLizard

    coco748 You don't need to inject to load mods clientside. Follow this guide: https://forum.plutonium.pw/topic/10/tutorial-loading-custom-gsc-scripts. If inject you will definitely be banned but if you load mods the legitimate way its fine.

    BO2 Client Support

  • How to manage grief teams in zombies without using a dedicated server
    JezuzLizardundefined JezuzLizard

    coco748 https://github.com/JezuzLizard/Public-BO2-Mods/blob/master/GriefFix/grieffix_official.gsc I don't make any guarantees it will work in a custom game though. Also the teams are allocated automatically with each player ending up on the team with the least players or the allies team.

    BO2 Client Support

  • BO2 with friends zombies
    JezuzLizardundefined JezuzLizard

    apothacy No all players need to be on the same game. Plutonium is entirely separate from the steam version and as such players cannot join each other between the games. Since Plutonium is free I recommend switching over since there are only upsides to playing on Plutonium.

    BO2 Client Support

  • Zombies Server Money Bug
    JezuzLizardundefined JezuzLizard

    DBCooper The config and mapname conbinations are in "Maps and the matching configs" in dedicated_zm.cfg in main. In the server console do set sv_maprotation "exec config map mapname" press enter and then type map_rotate and again press enter.

    BO2 Server Hosting Support

  • [ZOMBIES] Server Map Rotation: How to advantage of the new map rotation feature.
    JezuzLizardundefined JezuzLizard

    First before you can run a zombies server make sure you read this guide here:
    https://forum.plutonium.pw/topic/13/plutot6-server-set-up-guide.

    In order to properly run a server with rotating maps you'll need these configs from here:
    https://github.com/xerxes-at/T6ServerConfigs.

    In main/dedicated_zm.cfg you'll need to add one new line above "map_rotate" like this:

    sv_maprotation ""
    

    Next you'll need to populate sv_maprotation with maps for your server to run:

    sv_maprotation "exec zm_classic_processing.cfg map zm_buried exec zm_standard_town.cfg map zm_transit exec zm_grief_cellblock.cfg map zm_prison"
    

    In order to change the maps to anything you'd like you'll need to understand the two keywords used. The first keyword "exec" determines which config the server will execute when sv_maprotation is read. The config MUST match the map or else your server won't rotate properly and most likely not be joinable. Configs are in t6r/data/gamesettings and they are named in this pattern: "zm_" + "gametype_" + "location".

    The next keyword is "map" and this determines what map the server will launch. Knowing these two keywords will allow you to setup your server to run whatever maps you'd like. For example if I want to run Origins, MoTD, and Tranzit I would need to create a new sv_maprotation that looks like this:

    sv_maprotation "exec zm_classic_tomb.cfg map zm_tomb exec zm_classic_prison.cfg map zm_prison exec zm_classic_transit.cfg map zm_transit"
    

    Use "//" to create comments like this to title your sv_maprotation so you can easily tell what maps its running:

    //Map Rotation Origins, MoTD, Tranzit
    sv_maprotation "exec zm_classic_tomb.cfg map zm_tomb exec zm_classic_prison.cfg map zm_prison exec zm_classic_transit.cfg map zm_transit"
    

    If you want to only run one map at a time only include a single config and map in sv_maprotation like this:

    //Only running Origins
    sv_maprotation "exec zm_classic_tomb.cfg map zm_tomb"
    
    BO2 Server Hosting Support

  • [RESOLVED] [Bug] Server hangs upon launch
    JezuzLizardundefined JezuzLizard

    CPL I can confirm that this issue can also occur with the client as well. If it happens to the client its not possible to join any games.

    I think this issue has been around since the first release of r791 I believe. I've had this happen to me dozens of times since I need to relaunch my local server frequently for testing mods.

    Hopefully it can be fixed once and for all.

    BO2 Server Hosting Support

  • The Plutonium T4 (WAW) Suggestions Thread
    JezuzLizardundefined JezuzLizard

    H3X1C I went ahead and studied the code for the tesla gun because I've always been certain that it was a bug and wasn't necessarily intended to function the way it currently does.

    tesla_pvp_thread()
    {
    	self endon( "disconnect" );
    	self endon( "death" );
    	self waittill( "spawned_player" ); 
    
    	for( ;; )
    	{
    		self waittill( "weapon_pvp_attack", attacker, weapon, damage, mod );
    
    		if( self maps\_laststand::player_is_in_laststand() )
    		{
    			continue;
    		}
    
    		if ( weapon != "tesla_gun" && weapon != "tesla_gun_upgraded" )
    		{
    			continue;
    		}
    
    		if ( mod != "MOD_PROJECTILE" && mod != "MOD_PROJECTILE_SPLASH" )
    		{
    			continue;
    		}
    
    		if ( self == attacker )
    		{
    			damage = int( self.maxhealth * .25 );
    			if ( damage < 25 )
    			{
    				damage = 25;
    			}
    
    			if ( self.health - damage < 1 )
    			{
    				self.health = 1;
    			}
    			else
    			{
    				self.health -= damage;
    			}
    		}
    
    		self setelectrified( 1.0 );	
    		self shellshock( "electrocution", 1.0 );
    		self playsound( "tesla_bounce" );
    	}
    }
    

    This is the code that controls the tesla guns damage against the player. Not only are there no specific mentions of "specialty_juggernaut_zombies" aka jug, the weapon also doesn't affect the players max health. Instead the weapon changes the players current health to a set value depending on how much health the player has.

    The actual bug itself is where the tesla gun sets the players health permanently to a value lower than the players max health. This may be an issue with how the game deals with regenerating health if health is set to a specific value instead of damage being dealt. Health resets once a player goes down and is revived/respawned which is why that fixes it.

    Edit: I just wanted to point out that it is indeed a bug, but I personally don't think it should be fixed by Plutonium.

    Announcements

  • How to remove or add weapons to the mystery box in zombie. ! Help GSC
    JezuzLizardundefined JezuzLizard

    MetalThunder https://forum.plutonium.pw/topic/10/tutorial-loading-custom-gsc-scripts You need the gsc dump.

    BO2 Modding Support & Discussion

  • Origins white screen glitch
    JezuzLizardundefined JezuzLizard

    ceavia Try a solo game instead.

    BO2 Client Support

  • Rounds Not Starting On Zombies Nuketown
    JezuzLizardundefined JezuzLizard

    DylanM Gametype is wrong it should be zstandard.

    BO2 Server Hosting Support

  • Rounds Not Starting On Zombies Nuketown
    JezuzLizardundefined JezuzLizard

    DylanM What does your sv_maprotation look like?

    BO2 Server Hosting Support

  • party_maxplayers is not working after the new plutonium update
    JezuzLizardundefined JezuzLizard

    VvWANABEEvV It would go into the server console or thru an rcon command.

    BO2 Server Hosting Support

  • party_maxplayers is not working after the new plutonium update
    JezuzLizardundefined JezuzLizard

    Sorex If you do this method after the server starts the scoreboard will only display 4 players. As a result the extra players will have no way to see their points.

    BO2 Server Hosting Support

  • No T6r folder?
    JezuzLizardundefined JezuzLizard

    Blankyyz Create the following folders: t6r in the root directory of the server, and data in the t6r folder. Next download the gamesettings folder from the T6ServerConfigs Github linked in the guide and place it in data as well. Inside the data folder place all the other files from T6ServerConfigs Github.

    BO2 Server Hosting Support

  • GSC error whenever I run my zombies server
    JezuzLizardundefined JezuzLizard

    VvWANABEEvV Try running parts of your code at a time until you figure out what parts are causing the crash.

    BO2 Modding Support & Discussion

  • Unable to recompile a mod menu that I decompiled and fixed
    JezuzLizardundefined JezuzLizard

    Dopemp3 Decompilers aren't perfect they don't produce original source. You'll have to thoroughly study the code for errors in order to even get it to compile.

    BO2 Modding Support & Discussion

  • plutonium please make a easy way to host the servers
    JezuzLizardundefined JezuzLizard

    pattseheadshot What makes hosting a server so difficult?

    BO2 Server Hosting Support

  • Cannot run the game while hosting server
    JezuzLizardundefined JezuzLizard

    DandannyG Did you set net_port to a different port than 4976 on your dedicated server?

    BO2 Server Hosting Support
  • 1
  • 2
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 41 / 46
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Donate