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

Plutonium

Ezentruundefined

Ezentru

@Ezentru
About
Posts
13
Topics
3
Shares
0
Groups
0
Followers
6
Following
5

Posts

Recent Best Controversial

  • [ZM] [Release] Remove Perk Limit
    Ezentruundefined Ezentru

    @mr_foxinator easiest way to get to it is pressing the windows key + R, and then typing %appdata%.

    BO1 Modding Releases & Resources

  • Banned upon logging in
    Ezentruundefined Ezentru

    takokek need to press button beside the play button before launching otherwise you are "Online" and can be banned for cheating, even when in a solo match.

    6e4d848f-6894-437f-81c8-9425224c1b4d-image.png bc2f32be-da7f-4d8d-bda4-95e493802527-image.png

    General Discussion

  • cant launch t5 zombies
    Ezentruundefined Ezentru

    InfuzedJr game path just means what folder you have the game files in. so, once you install the game files, select the same folder in the launcher and game will launch.

    Launcher Support

  • Banned
    Ezentruundefined Ezentru

    gmp sorry meant the button - said arrow because i for some reason remembered it as being an arrow lol, click the little green thing to the right of play and it should change.
    8d779b7e-b660-4114-b314-1274d322007d-image.png

    a9914ad9-20e8-454c-b4c0-53fecd7f1927-image.png

    General Discussion

  • Banned
    Ezentruundefined Ezentru

    gmp if you used an injector to use said mod menu then that isnt allowed unless you play in offline mode (by pressing the arrow next to play button). Try using a gsc mod menu instead.

    General Discussion

  • [ZM] [Release] Remove Perk Limit
    Ezentruundefined Ezentru

    BigMacJr yeah create new folder named maps and put file in there.

    Alternatively, follow the reply above yours' instructions to achieve the same result as my script. If you use their script instead, copy my version of code into a text file, change the extension of the file to .gsc and then place the file in the following directory: \AppData\Local\Plutonium\storage\t5\scripts\sp

    Note: The reason you wanna use this version is because if you put his file where you are supposed to put it (\AppData\Local\Plutonium\storage\t5\scripts\sp\zom), it wont execute the script. and if you put it in sp, then it executes before you are even in a game. Adding that check for whether you are in "zombiemode" makes it so it executes and doesnt crash game upon launch.

    init()
    {
            if ( GetDvar( #"zombiemode" ) == "1" )
            {
                level thread onPlayerConnect();
            }
                
    }
    
    onPlayerConnect()
    {
    	for(;;)
    	{
    		level waittill ("connecting", player);
    
    		player thread onPlayerSpawned();
    	}
    }
    
    onPlayerSpawned()
    {
    	for(;;)
    	{
    		self waittill("spawned_player");
    
    		self.num_perks = -5; //Remove perk limit, must be a negative number
    
    	}
    }
    
    BO1 Modding Releases & Resources

  • How to turn off tap once to aim
    Ezentruundefined Ezentru

    @Muelebgsurbo2 in your controls you just bind mouse2 to hold aim instead of press to aim

    idk how it words the two binds in game but they are right next to each other

    BO2 Client Support

  • [Release] [Zombies] Black Ops 1 Custom Power ups
    Ezentruundefined Ezentru

    @dontknowletsplay just a heads up, in the version you attached with updated code, you left in the function to test the weapon drop powerups uncommented and so weapon drops are dropping for almost every instance that m1 is pressed.

    BO1 Modding Releases & Resources

  • [ZM] [Release] Remove Perk Limit
    Ezentruundefined Ezentru

    MONSTERK11ER I haven't tested that. Though I think it has a chance of working.

    Would certainly depend on the server though. I am unable to test this at the moment as I am still getting the "No avaliable sessions found" error.

    BO1 Modding Releases & Resources

  • [ZM] [Release] Remove Perk Limit
    Ezentruundefined Ezentru

    Duckyhub even if that was an option i have no idea how it works anyway.

    I had been looking for a way to remove the limit (including the way it's done in BO2) with no luck. However, thanks to @dontknowletsplay, I found out that you can replace game files without editing them and that the limit on perks could be found in the vending_trigger_think() function within _zombiemode_perks.gsc. rather than a variable in some random place in the code named something along the lines of "perk_purchase_limit". tried this method of replacing game file and it worked.

    BO1 Modding Releases & Resources

  • [ZM] [Release] Remove Perk Limit
    Ezentruundefined Ezentru

    Script that sets zombie perk limit to 9. Replaces game file without needing to edit it.

    To install:

    1. Download file
    2. Place downloaded file in the following folder: \AppData\Local\Plutonium\storage\t5\maps
    BO1 Modding Releases & Resources
  • 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