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

Plutonium

Ahrimdonundefined

Ahrimdon

@Ahrimdon
About
Posts
48
Topics
14
Shares
0
Groups
0
Followers
81
Following
15

Posts

Recent Best Controversial

  • 4p EE Parts Not Spawning With Less Than 4p?
    Ahrimdonundefined Ahrimdon

    Decided I would make a post on the forum since I can't find anything useful about this online.

    Last night, my buddies and I did the Buried EE (Richtofen Side) on my server. Everything went as expected, nothing out of the ordinary. Today, I get on to test something out and noticed that the 2 of the Guillotine parts, the Crystal and the Satellite Dish didn't spawn.

    I tried a few things, including running the server without any scripts, using brand new storage files/stat files/server config file, and basically temporarily clearing out any recently modified files that could've changed from last nights completion. I then hopped into a solo game and checked to see if it was solely a server sided issue, it was not. They didn't spawn in solo either. I did the same thing for client side files with no luck.

    The only 2 posts I've found on this issue say it has something to do with the previous Easter Egg completion, however this didn't appear to be the case.

    So my question is, do those 2 parts (or certain parts for 4p EE's) only spawn if the map is initialized/restarted with 4 players? I've never had an issue like this whatsoever. Any help is greatly appreciated as this has truly stumped the living hell out of me. Thanks in advance!

    BO2 Server Hosting Support

  • Setting Cheat Protected Client Dvar's
    Ahrimdonundefined Ahrimdon

    JezuzLizard That makes perfect sense. Thank you for the quick reply and answer. How would one allow the client to modify specific cheat protected DVAR's without enabling devmap? Not asking for a hand holding tutorial, but if you wouldn't mind pointing me in the right direction for that, it would be greatly appreciated. Thanks for your time.

    Edit: Did some more reading, and it seems the only way to do so is by coding a plugin in C++ which I have neither the brain power or time to do lmao.

    WAW Server Hosting Support

  • Setting Cheat Protected Client Dvar's
    Ahrimdonundefined Ahrimdon

    mxve Basically I'm trying to set the DVAR's on player spawn. Made a working script to do so in BO1 and BO2. However r_lodbiasrigid -1000 and DVAR's of that nature are cheat protected on WaW. If a player exec's a custom config with different values for those DVAR's after spawn, they will take player precedence. For example, I set r_fog 0 for town, and everyone that joins has fog disabled. If they would like to change the value to 1 after spawning, the fog will reappear.

    For WaW however, DVAR's of that nature are protected by sv_cheats 1 and will not set without that or devmap <mapname>. I'm just curious if there's a way around that. Thanks for the reply!

    WAW Server Hosting Support

  • Setting Cheat Protected Client Dvar's
    Ahrimdonundefined Ahrimdon

    Curious on how I would go about setting cheat protected DVAR's such as r_lodbiasrigid -1000 and r_lodbiasskinned -1000 for a dedicated server without using devmap.

    Here is what I have so far:

    onPlayerSpawned()
    {
    	level endon( "game_ended" );
            self endon( "disconnect" );
    	for(;;)
    	{
    		self waittill( "spawned_player" );
    		
    		self thread starting_message();
    		self thread der_riese_waffe_fix_message();
    		self thread client_dvars();
    		self thread starting_message_map();
    
    		self.num_perks = -5;
    	}
    }
    
    client_dvars()
    {
    	self SetClientDvars( "cg_deadChatWithDead", "1",
    		"cg_deadChatWithTeam", "1",
    		"cg_deadHearTeamLiving", "1",
    		"cg_deadHearAllLiving", "1",
    		"cg_everyoneHearsEveryone", "1",
    		"r_dof_enable", "0",
    		"r_fog", "0",
    		"cg_drawSpectatorMessages", "1",
    		"r_lodbiasrigid", "-1000",
    		"r_lodbiasskinned", "-1000" );
    }
    

    When players load in, all the non-cheat protected DVAR's set, however the cheat protected ones do not. If someone wouldn't mind pointing me in the right direction that would be wonderful! Thanks in advance!

    WAW Server Hosting Support

  • Setting Client DVAR's
    Ahrimdonundefined Ahrimdon

    Sorex Worked like a charm! Thank you very much!

    BO1 Modding Support & Discussion

  • Setting Client DVAR's
    Ahrimdonundefined Ahrimdon

    Absolute noob coder here. Wrote welcome scripts with what I've gathered from the modding community. So far everything has gone great, except for setting client DVAR's. Here's what I got so far:

    #include maps\_utility; 
    #include common_scripts\utility;
    #include maps\_zombiemode_utility;
    
    init()
    {
    	level.clientid = 0;
    	level.perk_purchase_limit = 9;
    	level thread onPlayerConnect();
    }
    
    onPlayerConnect()
    {
    	for(;;)
    	{
    		level waittill("connecting", player);
    		player thread onPlayerSpawned();
    		player.clientid = level.clientid;
    		level.clientid++;	// Is this safe? What if a server runs for a long time and many people join/leave
    	}
    }
    
    onPlayerSpawned()
    {
    	level endon( "game_ended" );
            self endon( "disconnect" );
    	for(;;)
    	{
    		self waittill( "spawned_player" );
    		
    		self.num_perks = -5; //Remove perk limit, must be a negative number
    
    		wait ( 10 );
    		self iPrintLnBold("Welcome to ^1Rimmy's Server^7!");
    		wait ( 5 );
    		self iPrintLnBold("^5Perk Limit ^1Removed");
    		wait ( 5 );
    	}
    }
    

    For setting DVAR's, I've tried adding:

    onPlayerConnect()
    {
    	for(;;)
    	{
    		level waittill("connecting", player);
    		player thread onPlayerSpawned();
    		player.clientid = level.clientid;
    		level.clientid++;	// Is this safe? What if a server runs for a long time and many people join/leave
    		self SetClientDvars( "cg_deadChatWithDead", "1",
    		"cg_deadChatWithTeam", "1",
    		"cg_deadHearTeamLiving", "1",
    		"cg_deadHearAllLiving", "1",
    		"cg_everyoneHearsEveryone", "1",
    		"r_fog", "0",
    		"cg_drawSpectatorMessages", "1",
    		"r_lodbiasrigid", "-1000",
    		"r_lodbiasskinned", "-1000" );
    	}
    }
    

    Along with:

    init()
    {
    	level.clientid = 0;
    	level.perk_purchase_limit = 9;
    	level thread onPlayerConnect();
    	level.reset_clientdvars = ::onPlayerConnect_clientDvars;
    }
    

    and using a function to define (think that's the right word) level.reset_clientdvars = ::onPlayerConnect_clientDvars; using the client DVAR's, along with a few other syntax variations. So far no luck. If anyone wouldn't giving a few tips on this it would be much appreciated.

    BO1 Modding Support & Discussion

  • Week ban for modding solo zombies
    Ahrimdonundefined Ahrimdon

    Satoel There is a an option for LAN mode, where anti-cheat is disabled in the Plutonium Launcher. Not dumb at all, it's literally the opposite of dumb, that's if you don't want script kiddies running around. Should be the little tab right next to the game. If you're playing solo only you can still launch the game in LAN mode using a .bat file and continue doing what you were doing offline.

    General Discussion

  • Launching Plutonium With a Batch File
    Ahrimdonundefined Ahrimdon

    JezuzLizard Good to know, thanks for the quick reply.

    Launcher Support

  • Launching Plutonium With a Batch File
    Ahrimdonundefined Ahrimdon

    I have made lan batch files to start each game, I'm just confused on how I would go about starting it online. I used the -lan parameter, is there a way to add the authentication in order to launch it online? So far when I launch games without the -lan parameter I get the error message Could not authenticate to Plutonium: non-success status code: 401.

    Thanks in advance!

    Launcher Support

  • Can someone send me a BO1 CFG pack pls?
    Ahrimdonundefined Ahrimdon

    JNATUS Make a folder called players in your BO1 Directory and put your config.cfg in that folder. Then open console in-game and type /exec config.cfg.

    BO1 Client Support

  • Cant start server
    Ahrimdonundefined Ahrimdon

    @MommyJett37 Try putting your dedicated_sp.cfg into your main folder. Had the same issue.

    BO1 Server Hosting Support

  • Issue With "allClientDvarsEnabled" [Solved]
    Ahrimdonundefined Ahrimdon

    So I think I found a workaround. If you want to use /view_inputSensitivity over the in-game gamepad sensitivity options you'll have to use the command /aim_view_sensitivity_override "sensitivity value". Looks like they moved controller sensitivity values over to that command, which actually makes a lot of sense ever since the integration of native advanced gamepad support . I heavily prefer this as it gives the option to fine tune stick sensitivity with decimals rather than strictly integers. As for the /sensitivity command, I think the dev's took it out, which also makes sense due to redundancy, but also kind of sucks for those who use a universal mouse sensitivity across Plutonium games.

    As for /exec, this command seems to have also been taken out. There are two work arounds for this, one for server, one for client.

    For client, instead of /exec custom_config.cfg, you must use bind P "sv_cheats 1; r_lodBiasRigid -1000".

    For server side, add the line player setClientDvar("r_lodBiasRigid", "-1000"); to your _clientids.gsc under the onPlayerConnect() function and recompile!

    This is pretty much an extension/update to a post I made ~2 Weeks Ago regarding a Dvar that was no longer functional. I think may have found the issue and it lies with the Dvar seta allClientDvarsEnabled "0". I'm not going to pretend to know what changed or if this if even the problem, however setting this to "1" and making the .cfg read only brought back Dvar's such as /sensitivity and /view_inputSensitivity which I thought had been taken out for good. Those Dvar's only showed up after changing the value to "1", but didn't work like they used too. /view_inputsensitivity was a helpful one too as I had an exact value I play on universally. I'm guessing since the addition of advanced controller options (Deadzone, etc.) those commands were scrapped or hidden possibly along with the /exec command?

    My main question would be, is it possible to still use these commands via an override command or other means or have they been scrapped permanently? Temporarily? Wanted to make a new thread to see what's going on with those commands and maybe shed some light to others wondering the same!

    BO2 Client Support

  • "exec" DVAR Non-Functional
    Ahrimdonundefined Ahrimdon

    Resxt Wow thanks for the fast reply, I'll just stick to that and editing the default config! Didn't know about default FOV either, so thank you. Swear it was working for me before, but all I've read is exactly what you're saying, which is weird. Either way, appreciate your time!

    BO2 Client Support

  • "exec" DVAR Non-Functional
    Ahrimdonundefined Ahrimdon

    Resxt Thanks for the reply man! I used to bind DVAR's with that method but eventually switched over to my own dedicated config file. Executing the config file works for T4 and IW5, just not T6. I probably should've clarified a bit more that's my bad. I'll include pictures of exactly what I'm talking about. Basically, it has all my default settings in it for each game and it's titled main.cfg, with file extensions on. I use the command "/exec main.cfg" and bind it using the command bind 0 "exec main.cfg". It has been working for me fine for roughly a year now and just recently stopped for T6 with the implementation of r3043. I created a file with only cg_fov "100" tested the exec in all the games and my suspicions were confirmed. Have tried it in custom matches, solo and a dedicated server and it seems to only be an issue with T6. Appreciate your time!

    Directories.png MW3.png WaW.png BO2.png

    BO2 Client Support

  • "exec" DVAR Non-Functional
    Ahrimdonundefined Ahrimdon

    Earlier today I hopped on and pressed my key bind I use for LodBias/Custom Settings and it didn't work for the first time ever. I thought I was crazy because it's worked like a charm every time. Tried everything from verifying files to putting the file in different folders than usual and even all folders in the directory and “%localappdata%/Plutonium” at one point, none of it worked.

    I wanted to make it wasn't me so I hop on MW3 and WaW to test the exact same config file and voila, works like a charm on both games. Put the config file in storage - > IW5/T4 -> players. For testing purposes my config file had one line, cg_fov "100". It worked before the update to r3043, but not after, solely for BO2. Just wanted to see if there's a new way, it's a glitch, or at least bring it to someone's attention, in a non-complaining manner of course. Thanks in advance!

    BO2 Client Support

  • [Release] Shield durability in hud
    Ahrimdonundefined Ahrimdon

    @AD-BOY7 Sure man, I can do that. Check out my most recent post. Already did all the work for you :). Without sounding cocky, pretty sure I’m the first one to ever dump every single model and .dds/.tga for BO2 zombies, organize it and post it. You’ll want to download only the “All .dds files”. That will have everything you’re looking for!

    BO2 Modding Releases & Resources

  • [Release] Shield durability in hud
    Ahrimdonundefined Ahrimdon

    @AD-BOY7 By exporting the .ipaks.

    BO2 Modding Releases & Resources
  • 1
  • 2
  • 3
  • 2 / 3
  • Login

  • Don't have an account? Register

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