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

  • Bots are bad?
    Cahzundefined Cahz

    thElite the bots aren't smart. they're basically stuck on the easiest difficulty. I'm unsure if there is a way to change their difficulty at all, but maybe someone else has a method

    BO2 Modding Support & Discussion

  • IW5 issue
    Cahzundefined Cahz

    @Mr-Android said in IW5 issue:

    Thanks all - i think we've seen something like this before and it's related to your AntiVirus.
    Normally it's Windows Defender but if you have a different one, you will need to google "how to add folder exceptions using YOUR AV HERE" and follow whatever guide appears.

    DizzyD said in IW5 issue:

    @Mr-Android it says mcafee not windows

    DizzyD Google "how to add folder exceptions using mcafee".

    MW3 Client Support

  • Where is Spec Ops?
    Cahzundefined Cahz

    adawon This is coming from staff directly in an old thread.
    Sass Said previously:

    Survival is (in a technical aspect) part of the Singleplayer portion of the game, which we do not work on. The focus of the IW5 client is to offer a Multiplayer experience, therefore the inclusion of Survival or Spec Ops isn't planned.

    MW3 Client Support

  • plutonium.exe and exclusions
    Cahzundefined Cahz

    FragsAreUs Didn't realize Windows 7 wasn't supported. Yeah I'd try to upgrade to Windows 10.

    MW3 Server Hosting Support

  • plutonium.exe and exclusions
    Cahzundefined Cahz

    Jay Q Wait for an answer... You've literally posted the same thing in 3 separate threads.

    Now I'm not 100% certain of course, but based off of everything I've seen on other support threads, 32 bit systems are NOT supported. (maybe staff can confirm)

    Solution: Check if your computer is compatible with 64 bit version of Windows and install if you can.

    MW3 Server Hosting Support

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

    UnbidBurrito281 totally. but its not necessary as the perk machines allow you to purchase them for X amount of points.

    BO2 Modding Releases & Resources

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

    @U-A-G https://github.com/Paintball/BO2-GSC-Releases/tree/master/Zombies Mods/Zombies%2B%2B v1.2

    BO2 Modding Releases & Resources

  • World At War
    Cahzundefined Cahz

    FNAFBOYGAMING CoD WAW on Steam already has Dedicated Servers and Mod Support. There's literally nothing that needs to be added.

    Steam BO2 doesn't have mod support or dedicated servers. Which is why the Pluto T6 Client was made.

    Since WAW already has those things through steam, there's literally no reason for them to waste their time and energy. They can be using their time and energy to work on updating IW5 and T6, instead of working on something that already exists.

    Buy the game on Steam you broke bastard

    General Discussion

  • Virus Detected
    Cahzundefined Cahz

    GodChicken Disable your Antivirus/Windows Defender and then add an exclusion so it won't get deleted again.

    BO2 Client Support

  • Does the download continue where it was if I turn off the computer?
    Cahzundefined Cahz

    HanzoDraZ If you close piry.exe mid download, it will continue where it left off the next time you open it.
    Note: It may act like it will be downloading the beginning files again, but it will check the files and then skip all the way to where you left off.

    BO2 Client Support

  • t6r.dll
    Cahzundefined Cahz

    Seqii said:

    it is not a virus and i have loaded it up before but then shuts down

    Seqii Just because the .dll you downloaded has the same name as the file you were missing, doesn't mean it's the right file. You downloaded a file named t6r.dll from a website that has nothing to do with Plutonium. Just because "it is not a virus" doesn't mean it is the right file.

    Read the Plutonium T6 FAQ and read the section that talks about the t6r.dll error and how to fix it.

    BO2 Client Support

  • Help pls
    Cahzundefined Cahz

    The_Tomatito Does it show any errors or pop ups?

    BO2 Client Support

  • Help pls
    Cahzundefined Cahz

    The_Tomatito Does it show any errors or pop ups? Provide screenshots or video if you can. Posts like these with little to no details are a lot harder for staff and community members to help fix your problem.

    BO2 Client Support

  • How to kick out a player in self-hosted server
    Cahzundefined Cahz

    Bender As far as I know, the only way to kick people would be from an external source like IW4MAdmin, or with some sort of mod menu

    As for the sv_offline 1 question. Players can still join the server via console using connect IPAddress:Port. With the IP Address being your public IPV4 address, and then the port.
    EXAMPLE: connect 144.100.50.10:4977

    find your public IPV4 address from a website like http://whatismyip.org/

    BO2 Server Hosting Support

  • Green Run maps on PlutoT6 servers
    Cahzundefined Cahz

    1337ftw Read this extended FAQ.

    BO2 Server Hosting Support

  • How to kick out a player in self-hosted server
    Cahzundefined Cahz

    Bender If you're wanting to only play with your friends and not other players, I'd recommend using g_password.

    g_password "PASSWORD"
    

    This will require everyone to enter the password in the console first, then connecting to the server after

    BO2 Server Hosting Support

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

    Amusedd
    The mod uses functions from _zm_perks.gsc to enable mule kick. There was no need for me to change any functionality of mule kick because it's all already done inside _zm_perks.gsc.

    self setperk( perk );
    

    And the self.hasMuleKick variable was supposed to be used for the custom perk hud, but I never actually ended up using the variables anywhere. So they're useless.

    for(;;)
    {
    	self waittill( "player_downed" );
        	self unsetperk( "specialty_additionalprimaryweapon" ); //removes mulekick
    	self unsetperk( "specialty_longersprint" ); //removes staminup
    	self unsetperk( "specialty_deadshot" ); //removes deadshot
        	self.icon1 Destroy();self.icon1 = undefined; //deletes the perk icon
        	self.icon2 Destroy();self.icon2 = undefined; //deletes the perk icon
        	self.icon3 Destroy();self.icon3 = undefined; //deletes the perk icon
        	self.icon4 Destroy();self.icon4 = undefined; //deletes the perk icon
    }
    

    So unless you managed to remove either the setperk function and the unsetperk functions, it should be working fine. Nobody else seems to have any issues with that, and I just tested the most recent version on my github and had no issues.

    But whatever works for you, buddy

    BO2 Modding Releases & Resources

  • does tekno mw3 have a virus in it or is it a false positive?
    Cahzundefined Cahz

    hazard456 Tekno MW3 is a totally separate client from Plutonium IW5. This question is irrelevant. Make sure you're installing Plutonium IW5 properly by following this guide.

    General Discussion

  • ibcef.dll is not designed to run on windows, bad image, so I opened the game and I get this error
    Cahzundefined Cahz

    poofuu Please refrain from making posts regarding questions that have been answered in the FAQ for Plutonium T6. A little research can go a long way

    BO2 Client Support

  • ¿I want to know if you can play mw3 in survival?
    Cahzundefined Cahz

    TITO5050 Survival is not supported with Plutonium IW5 because it is technically a Single Player feature. If you want to play survival, buy MW3 on Steam.

    MW3 Client Support
  • 1
  • 2
  • 10
  • 11
  • 12
  • 13
  • 14
  • 19
  • 20
  • 12 / 20
  • Login

  • Don't have an account? Register

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