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

Plutonium

Resxtundefined

Resxt

@Resxt
Plutonium Staff
About
Posts
6.6k
Topics
27
Shares
0
Groups
2
Followers
508
Following
17

Posts

Recent Best Controversial

  • could i please be unbanned
    Resxtundefined Resxt

    Darksideoreo You should be thankful it's only a week.
    I don't see how you even dare asking for an unban when you admit that you cheated..

    General Discussion

  • Sign ups for Server-Owners channel - Discord
    Resxtundefined Resxt

    Ston3Cold unknowghost @SuspiciousGamer @Aka_Curtis CrushedPuppy BadRanch brolpzt

    Added your role

    General Discussion

  • Plutonium is dead who tf is gonna buy bo2 on steam for 60$ lol
    Resxtundefined Resxt

    Useless topic since

    1. Some people have a job
    2. The game frequently goes on sale
    3. It's not like the team really had a choice
    General Discussion

  • Please give me torrent fille for BO2
    Resxtundefined Resxt

    We don't allow piracy

    General Discussion

  • Black ops 3 plutonium
    Resxtundefined Resxt

    Bot04 Yes. But BO3 has already everything a client could add while BO2 had a lot of room for improvements. If you owned the game you'd know that. Client is not piracy so wrong place
    https://forum.plutonium.pw/search?term=bo3&in=titlesposts

    General Discussion

  • How do You Host a Private Modded Zombies Match
    Resxtundefined Resxt

    MarioloPantoja that's what I said yes?

    WAW Client Support waw mod zombies private match

  • [Release] K-Zombies Texture Pack
    Resxtundefined Resxt

    Nice release
    I love the HUD and the perk icons

    BO1 Modding Releases & Resources

  • fdd
    Resxtundefined Resxt

    Ca n'arrivera pas

    Sujets Français

  • Bo3/Bo1 plutonium
    Resxtundefined Resxt

    calu Simply because there is nothing to add to BO3. Plutonium is not about getting games for free.
    BO1 already has a client so there's no point in creating another one.

    General Discussion

  • T4 Zombie crashes when I try to change the resolution.
    Resxtundefined Resxt

    Kinzie
    Go to %localappdata%\Plutonium\storage\t4\players and open the config file with the notepad to edit it. Make sure your game is closed before saving!
    (plutonium.cfg is for singleplayer/zombies, plutonium_mp.cfg is for multiplayer)
    Change these 4 values like this (you can use ctrl+f to search for it):

    seta r_fullscreen "0"
    seta r_noborder "1"
    seta vid_xpos "0"
    seta vid_ypos "0"
    

    You can also change your resolution manually from there for example for 1920x1080 screens:

    seta r_mode "1920x1080"
    

    This will make your game use the windowed borderless mode which is highly recommended to avoid crashes caused by the engine.

    WAW Client Support

  • [Release] [ZM] Transgender Flag Replacing the bad one
    Resxtundefined Resxt

    @MedicSoundwave FaZe Flick this is not a place for politics or opinions.
    If you want this download it, if you don't want it close this tab and move on.
    This is just a download for those who want, no one is forced to do anything and a COD texture post release is not a place for debates

    BO1 Modding Releases & Resources

  • lancement en groupe impossible
    Resxtundefined Resxt

    Oui tu peux jouer en partie privée mais non tu ne peux pas monter un groupe pour rejoindre un serveur. Vous devez rejoindre le serveur chacun de votre côté

    Sujets Français

  • Bo3/Bo1 plutonium
    Resxtundefined Resxt

    GhostMW There is no "vote" no one ever said a new game was coming. No new game is planned + BO3 probably won't ever happen because there is not a single reason why we'd need a client for it.

    General Discussion

  • xbox one series x Controller
    Resxtundefined Resxt

    back2bean captnkickass450 try exec default_controller.cfg in the console

    WAW Client Support

  • How to host a bo2 server
    Resxtundefined Resxt

    CryqKind If you mean a public server you can't unless you buy a VPS
    If you mean a custom game either get someone else to host or join a public server or use RadminVPN in LAN mode

    BO2 Server Hosting Support

  • HUD killstreak Player
    Resxtundefined Resxt

    I fixed the warnings in the console, I included the explanations at the bottom for those who are curious about it.
    I also made it not unnecessarily thread on bots, just a small performance "fix"
    Kalitos Maybe this will interest you or maybe you wanna update your script on the OP

    #include maps\mp\gametypes\_hud_util;
    
    Init()
    {
        level thread OnPlayerConnected();
    }
    
    OnPlayerConnected()
    {
        for(;;)
        {
            level waittill("connected", player);
            
            // Don't thread DisplayPlayerKillstreak() on bots
            if (isDefined(player.pers["isBot"]))
            {
                if (player.pers["isBot"])
                {
                    continue; // skip
                }
            }
    
            player thread DisplayPlayerKillstreak();
        }
    }
    
    
    DisplayPlayerKillstreak()
    {
        self endon ("disconnect");
        level endon("game_ended");
    
        self.killstreak_text = createFontString( "Objective", 0.65 );
        self.killstreak_text setPoint( 0, "TOP", 0, 7.5 );
        self.killstreak_text.label = &"^1KILLSTREAK: ";
    
        while(true)
        {
            if(!IsDefined(self.playerstreak) || self.playerstreak != self.pers["cur_kill_streak"])
            {
                self.playerstreak = self.pers["cur_kill_streak"];
                self.killstreak_text setValue(self.pers["cur_kill_streak"]);
            }
    
            wait 0.01;
        }
    }
    

    a4ceda64-034c-4d0e-9cdf-4e19d642f79b-image.png
    For some reason the game seems to throw a warning when you pass "CENTER" in the setPoint function so I replaced it with 0.


    f351ea10-85f0-4ed5-a7e3-411d0d042070-image.png
    This was happening because when doing this

    if(self.playerstreak != self.pers["cur_kill_streak"])
    {
        self.playerstreak = self.pers["cur_kill_streak"];
        self.killstreak_text setValue(self.pers["cur_kill_streak"]);
    }
    

    the first time the playerstreak variable isn't defined yet because it's a variable created by the script in that if condition.
    So to make sure the script works normally I added another case !IsDefined(self.playerstreak) || so that it will work both when our HUD needs to be updated and also when our variable isn't defined yet (first iteration)


    b0c22f71-7c72-41a4-8826-e48601349c21-image.png
    Same than above, when comparing undefined to a variable the result isn't true or false but undefined (to my understanding)

    MW3 Modding Releases & Resources

  • est ce qu'y aura un bo3
    Resxtundefined Resxt

    Casperno non

    Sujets Français

  • WaW mod maps
    Resxtundefined Resxt

    Moodl3

    • Leviathan
    • Oil Rig
    • Clinic of Evil
    • Abandoned School
    • Dead Ship

    These are the 5 maps that comes to mind. Honestly there are a lot of great maps you can find.

    What I love the most is how different from each other the maps can be due the time difference there can be between the creation of 2 maps.

    Sorting by most popular on UGX always served me well. Also don't forget about Youtube there is a huge amount of map reviews, gameplays and easter egg videos you can find!

    General Discussion

  • @Dss0 that didnt help or do anything
    Resxtundefined Resxt

    SuBoris you linked to a shady piracy website which isn't allowed. Even if we allowed discussing piracy why would we allow a random guy with no post to link to random websites no one knows that could contain malware? It's just common sense.

    We don't censor things, we just delete posts that don't respect our rules and/or are dangerous for others. Youe post was both. Also next time don't hijack a random topic

    WAW Client Support

  • [Release] Galaxy Skyboxes
    Resxtundefined Resxt

    Nice one, I'll use this

    MW3 Modding Releases & Resources iw5 sky box img slap
  • 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