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

Plutonium

JezuzLizardundefined

JezuzLizard

@JezuzLizard
Plutonium Staff
About
Posts
916
Topics
17
Shares
0
Groups
3
Followers
222
Following
84

Posts

Recent Best Controversial

  • 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

  • Mustang & Selly bug
    JezuzLizardundefined JezuzLizard

    RezTech Basically this is a weapon bug that has existed since BO2 first came out. When you swap an empty mustang and sally( pack-a-punched m1911 ) to another gun it will show a scope briefly.

    BO2 Client Support

  • Using r_xxxx dvars through a GSC file?
    JezuzLizardundefined JezuzLizard

    @Dev-Ultimateman Its not possible to set dvars on clients from gsc in T6. Clientside dvars need to be set by the client themselves or thru certain internal gsc functions created specifically for setting those dvars.

    BO2 Modding Support & Discussion

  • How to change the health of panzersoldat?
    JezuzLizardundefined JezuzLizard

    SpicySpider Unfortunately, if you want to modify the health of the panzer you would have to modify _zm_ai_mechz.gsc in zm_tomb_patch/maps/mp/zombies. This is because the health is only set at the init() and then only when the panzer's health is supposed to increase in mechz_health_increases().

    It is likely there will be a lot of bugs due to how big the script is so you will have to fix it.

    BO2 Modding Support & Discussion
  • 1 / 1
  • Login

  • Don't have an account? Register

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