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

Plutonium

Cahzundefined

Cahz

@Cahz
VIP
About
Posts
390
Topics
8
Shares
0
Groups
2
Followers
151
Following
35

Posts

Recent Best Controversial

  • Is survival town, farm, or bus depot possible on server?
    Cahzundefined Cahz

    @gravwrld Reviving an old post from 9 months ago doesn't help anyone.

    Since then, it has been made public. If you searched the forums to find this extremely old post, you should've been able to find the Release post.
    https://github.com/xerxes-at/T6ServerConfigs

    BO2 Server Hosting Support

  • How to rotate non sv_maprotation maps
    Cahzundefined Cahz

    Optimus X https://github.com/xerxes-at/T6ServerConfigs

    BO2 Modding Support & Discussion

  • it doesn't open the game
    Cahzundefined Cahz

    casimirito Windows 7 is not supported. Update to Windows 10

    BO2 Client Support

  • Me banearon de los bonus maps(servidores de mapas extra) y no se por que
    Cahzundefined Cahz

    Stevens fbddc0f5-2368-4563-a663-9ce484331860-image.png

    General Discussion

  • xinput1_4dll is missing
    Cahzundefined Cahz

    gunner383 Windows 7 is not supported. Update to Windows 10

    Launcher Support

  • [Release] [Zombies] Secondary Score Display for matches with 4+ players
    Cahzundefined Cahz

    MetalThunder Amusedd
    Could be crashing because the thread doesn't end on endgame or when the player disconnects. Try the script below.

    displayScore()
    {
    	self endon( "disconnect" );
    	level endon( "end_game" );
    	self.scoreText = CreateFontString("Objective", 1.5);
    	self.scoretext setPoint("CENTER", "RIGHT", "CENTER", "RIGHT");
    	self.scoreText.label = &"^2Score: ^7";
    	self.scoretext.alpha = 0;
    	while(true)
    	{
    		self.scoretext SetValue(self.score);
    		if(getplayers().size >= 5 && self.scoretext.alpha == 0)
    		{
    			self.scoretext FadeOverTime( 1 );
    			self.scoretext.alpha = 1;
    		}
    		else if(getplayers().size < 5 && self.scoretext.alpha >= 0)
    		{
    			self.scoretext FadeOverTime( 1 );
    			self.scoretext.alpha = 0;
    		}
    		wait 0.1;
    	}
    }
    

    Make sure to call the function in onPlayerConnected function (like below)

    onplayerconnected()
    {
    	for ( ;; )
    	{
    		level waittill( "connected", player );
    		player thread displayScore(); //add this line
    	}
    }
    
    BO2 Modding Releases & Resources

  • Custom camos not working
    Cahzundefined Cahz

    User76 screenshot your folder so we can see the file location

    BO2 Modding Support & Discussion

  • SETUP OPENS DOCUMENTS
    Cahzundefined Cahz

    AMAROK Please READ instead of spamming the forums asking for someone to hold your hand for the installation.
    b8814713-c272-4e2a-8390-e3bcf1729bba-image.png
    I linked a guide that clearly states at the VERY TOP of the guide that PIRY.exe is OFFLINE and that it shows an alternate method.

    If you still can't figure it out, READ IT AGAIN.
    Many players have been able to install on their own

    Launcher Support

  • SETUP OPENS DOCUMENTS
    Cahzundefined Cahz

    AMAROK You're missing the game files.
    Follow this guide

    Launcher Support

  • [Release] [ZM] ZOMBIES++
    Cahzundefined Cahz

    EasilyUnstpp_

    why you are not able to use some perk machines in some maps?
    

    Because of limitations you can't load assets from one map to another
    (cant grab PHD Flopper machine from MOTD and use it on Buried as example)

    and why do u use modded icons for the perks that are not on the maps? can't you just replace the icons with the originals?
    

    Can't do that because of limitations.
    (can't use Stamin-up perk icon on maps that don't have it loaded)

    BO2 Modding Releases & Resources

  • Texture Names
    Cahzundefined Cahz

    115sparkles Use Greyhound to export the .ipak files. It should keep the proper file names as far as i know

    BO2 Modding Support & Discussion

  • [Supporting] Spawning bots in SND
    Cahzundefined Cahz

    mikey another method could be using a DVAR since they don't reset like normal variables.

    level.botsSpawned = getDvarIntDefault( "botsSpawned", 0 );
    if( !level.botsSpawned )
    {
        setDvar( "botsSpawned", 1 );
        level.botsSpawned = getDvarIntDefault( "botsSpawned", 0 );
        thread handleBot();
    }
    

    but then the DVAR would need to be reset at the end of the game

    level waittill( "game_ended" );
    setDvar( "botsSpawned", 0 );
    
    BO2 Modding Support & Discussion

  • Ban
    Cahzundefined Cahz

    Yin-AwaK Private Match does not mean LAN Mode

    LAN Mode means you chose that mode from the launcher. Which also clearly shows that the anticheat would be disabled in this mode.
    940bf1b1-f897-4e25-9081-4ae275a7ccb7-image.png

    Chances are, you thought playing private match would be considered offline and got banned. Next time make sure to launch in LAN Mode on the launcher to guarentee not getting banned when trying to "mess around" with cheats.

    General Discussion

  • Certiifiied report
    Cahzundefined Cahz

    svr 0a4c2902-b46f-43a6-98f1-b6f5f0d94b84-image.png

    General Discussion

  • Why does plutonium have so many problems?
    Cahzundefined Cahz

    Galaxy_Drifterz 6dd2dcf0-ea0b-4f26-b72b-6d577b574532-image.png

    Based on your history, you're confused. 🙂

    If you're having a genuine issue that you can't figure out how to solve -- berating the developers about "SO MANY PROBLEMS" isn't the way to go about it.
    (Makes you look entitled as fuck to complain about something without showing the issue)

    If you DON'T have an issue that needs to be solved, then you're quite literally braindead for this post.

    I guess we will wait for your response (if you even decide to reply) to see.

    General Discussion

  • Ban
    Cahzundefined Cahz

    MonoMK The anticheat policy has been posted since the end of August. And looking at the ban logs, you got banned twice mid September.

    This occurred due to your own negligence from not reading the anticheat policy --even after being banned the first time.

    Highly doubt staff will lift the ban. Good luck 🙂

    General Discussion

  • Quick question about what I can do with GSC?
    Cahzundefined Cahz

    thewawpro said in Quick question about what I can do with GSC?:

    Can I enable unlimited sprint? with or without staminup

    Yes.

    Can I disable fog or fire damage on tranzit?

    Fog - No.
    Disable fire damage? - Yes.

    BO2 Modding Support & Discussion

  • how to play campaing
    Cahzundefined Cahz

    Smokva If you want to play single-player, buy the game. Simple as that. Several people have spent months of their life working on it, so it deserves a little more respect than to be pirated.

    Plutonium is here to create a better multi-player experience than what Steam servers can provide. Not so you can play games for free

    BO2 Client Support

  • Config file "tdm.cfg" not found!
    Cahzundefined Cahz

    Raz912 You are missing files from the T6 Server Setup - The files inside the gamesettings folder contain all the .cfg files for each game type. including the one youre missing

    https://github.com/xerxes-at/T6ServerConfigs

    BO2 Server Hosting Support

  • ZOMBIE MOD MENU
    Cahzundefined Cahz

    SLOL https://forum.plutonium.pw/topic/10/tutorial-loading-custom-gsc-scripts?_=1603307647310

    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