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

Plutonium

JezuzLizardundefined

JezuzLizard

@JezuzLizard
Plutonium Staff
About
Posts
916
Topics
17
Shares
0
Groups
3
Followers
222
Following
84

Posts

Recent Best Controversial

  • [Release] [ZM] [Mod] zm_weapons - Adding all weapons to maps
    JezuzLizardundefined JezuzLizard

    Cawldwink GSC scripts can remain uncompiled in the .iwd, or .ff containers. Plutonium will automatically compile the scripts even if they are in those containers.

    BO2 Modding Releases & Resources

  • [Release] [ZM] [Mod] zm_weapons - Adding all weapons to maps
    JezuzLizardundefined JezuzLizard

    sehteria Just an FYI scripts don't need to be precompiled for Plutonium to load them from fastfiles.

    BO2 Modding Releases & Resources

  • Bypass pap camo
    JezuzLizardundefined JezuzLizard

    JeffersonEpstein Requires modifying GSC since that is how the camo is assigned.

    BO2 Modding Support & Discussion

  • Is it possible to add scripts inside the mods folder
    JezuzLizardundefined JezuzLizard

    Funny Fart Yes. Create a folder called mods in %localappdata%/Plutonium/storage/t6/ if you don't have it already. Then make a new folder in the mods folder that will be the mod's name, it can be anything but it needs to be prefixed with zm_ to show in the ingame mods list. Then put your mod menu in the same folders you normally load it from in that mod folder.

    BO2 Modding Releases & Resources

  • New Mods Section on Black Ops II Zombies
    JezuzLizardundefined JezuzLizard

    Cawldwink Anything that can be loaded from the storage/t6 folder can be loaded from a mods folder.
    This includes scripts, you would just use the same folder structure as you would for storage/t6.

    BO2 Modding Support & Discussion

  • Plutonium RCE exploit?
    JezuzLizardundefined JezuzLizard

    xTecNine Does it only happen on specific servers or any server you play on?

    BO2 Client Support

  • How to use botbuttonoverride function GSC?
    JezuzLizardundefined JezuzLizard

    creed59
    https://github.com/ineedbots/t6_bot_warfare
    https://github.com/JezuzLizard/t6-fastfile-mods/blob/feature/zm_ai_pack/zm_ai_pack/pluto_sys.gsc

    The first link gives example usage in a well made mod made by the developer of Plutonium who added the bot builtins that you want to use.
    The second link tells you how to use the current Plutonium builtins.

    BO2 Modding Support & Discussion

  • how i use install custom sounds or victory theme
    JezuzLizardundefined JezuzLizard

    WolflexZ This is the WAW sub forum...

    WAW Modding Support & Discussion

  • Restricted Graphic Content No Matter What
    JezuzLizardundefined JezuzLizard

    Its a bit involved on how to set this value on Plutonium as it is not controlled by a dvar, but instead uses Demonware.

    First make a mods folder in %localappdata%/Plutonium/storage/t6

    In that mods folder create a folder called zm_fix_graphic_content

    In the folder called zm_fix_graphic_content create a ui folder, then inside that ui folder create a t6 folder.

    Engine.SetProfileVar(0, "cg_blood", 1)
    Engine.SetProfileVar(0, "cg_mature", 1)
    
    CoD.Error = {}
    CoD.Error.Width = 400
    CoD.Error.Height = 250
    CoD.Error.SetMessage = function (ErrorPopup, ErrorMessage)
    	ErrorPopup.messageLabel:setText(ErrorMessage)
    end
    
    LUI.createMenu.Error = function (LocalClientIndex)
    	local ErrorPopup = CoD.Menu.NewSmallPopup("Error")
    	ErrorPopup:addTitle(Engine.Localize("MENU_NOTICE_CAPS"))
    	ErrorPopup.setMessage = CoD.Error.SetMessage
    	ErrorPopup.okButton = CoD.ButtonPrompt.new("primary", Engine.Localize("MENU_OK_CAPS"), ErrorPopup, "button_prompt_back")
    	ErrorPopup:addLeftButtonPrompt(ErrorPopup.okButton)
    	ErrorPopup.messageLabel = LUI.UIText.new()
    	ErrorPopup.messageLabel:setLeftRight(true, true, 0, 0)
    	ErrorPopup.messageLabel:setTopBottom(true, false, CoD.Menu.TitleHeight + 10, CoD.Menu.TitleHeight + 10 + CoD.textSize.Condensed)
    	ErrorPopup.messageLabel:setAlpha(CoD.textAlpha)
    	ErrorPopup.messageLabel:setAlignment(LUI.Alignment.Left)
    	ErrorPopup.messageLabel:setFont(CoD.fonts.Condensed)
    	ErrorPopup:addElement(ErrorPopup.messageLabel)
    	return ErrorPopup
    end
    

    Now create a file called error.lua in the t6 folder you created, and paste the above code into it.
    Now launch the game, and click online in the mainmenu, there you should see the mods button, click it and load the zm_fix_graphic_content mod.

    Loading the mod should have reenabled graphic content even when you unload the mod.

    BO2 Client Support

  • Zombie blood to double points in origins
    JezuzLizardundefined JezuzLizard
    main()
    {
    		func = GetFunction( "maps/mp/zm_alcatraz_utility", "check_solo_status" );
    
    		if ( !isDefined( func ) )
    		{
    			func = GetFunction( "maps/mp/zm_tomb_utility", "check_solo_status" );
    		}
    
    		if ( isDefined( func ) )
    		{
    			replaceFunc( func, ::check_solo_status_override, 1 );
    		}
    }
    
    check_solo_status_override()
    {
    	level.is_forever_solo_game = true;
    }
    

    Just put this in a script in scripts/zm
    It works because we are just overriding the detour placed by Plutonium in the ranked.gsc by setting the priority of our replacefunc to be higher by using a value higher than -1 in the third argument.

    BO2 Modding Support & Discussion

  • [B02] Survival Variants of Grief-Specific Maps?
    JezuzLizardundefined JezuzLizard

    ZedZerdz_ You can't find any console commands to do this because the way Treyarch designed the gametype/location system is cancer. The only valid gametype/location combinations are the ones they explicitly support in script which they only do a per map basis.

    https://github.com/JezuzLizard/Cut-Tranzit-Locations

    You can use that above repo to use as a template for your own locations for the other maps.

    https://github.com/plutoniummod/t6-scripts This repo is for reference so you can know what the base map's code does.

    https://github.com/Laupetin/OpenAssetTools You can also use this for adding CDC/CIA characters to other maps though it is more involved than just using scripts.

    BO2 Client Support

  • ..lately my servers are lagging a little ..
    JezuzLizardundefined JezuzLizard

    Is the lag happening during the match? The hitch warning message is normal if it happened while loading the map.
    Also the message "WARNING: sv_enableItemRestriction is DEPRECATED. Please switch to using DSR recipes for long-term support!" means exactly what it says. At some point we will remove that dvar and the restrictions will require using a DSR recipe which you learn about here: https://plutonium.pw/docs/server/t6/loading-recipes/ .

    BO2 Server Hosting Support

  • [GSC] [ZM] HealthBarV2
    JezuzLizardundefined JezuzLizard

    Resxt If you look at what he added in the v3 version that requires the plugin you'll see the only real addition is a top round feature. Really stretches the definition of health bar.

    BO2 Modding Releases & Resources

  • With Pluto having Mod Tools (as it's in Beta), would there be plans to create Zombies Chronicles Maps for BO2 Zombies and possible T6 Custom Maps (if Radiant is possible)?
    JezuzLizardundefined JezuzLizard

    DerpyBoxDX I like how he made his own Havok Script assembler when the game actually already has a fully working Havok Script COMPILER that Treyarch forgot to remove.

    Anyway there isn't any point in discussing Nevis as it will likely never see the light of day.

    To answer your question, it is doable but a lot of work.

    General Discussion

  • With Pluto having Mod Tools (as it's in Beta), would there be plans to create Zombies Chronicles Maps for BO2 Zombies and possible T6 Custom Maps (if Radiant is possible)?
    JezuzLizardundefined JezuzLizard

    Plutonium isn't working on mod tools, they are being worked independently here: https://github.com/Laupetin/OpenAssetTools

    Radiant wouldn't even help with porting existing maps only make new maps. In terms of difficulty porting maps from other games which already have radiant is far easier than making the entire map making pipeline for T6 nearly from scratch. It makes far more sense to backport from T7 which already has the entire map making pipeline, and also has all the Chronicles maps anyway.

    General Discussion

  • [Support] Custom Game Saving?
    JezuzLizardundefined JezuzLizard

    is0_ https://plutonium.pw/docs/client/t6/game-recipe/

    BO2 Modding Support & Discussion

  • How to change my bo1 to Spanish?
    JezuzLizardundefined JezuzLizard

    epvitaxddd Use Steam to change the language, other methods are unsupported.

    BO1 Client Support

  • No Ui or text in BO2
    JezuzLizardundefined JezuzLizard

    With the amount of information you have provided that would allow someone to actually help with your issue the answer may surprise you.

    BO2 Client Support

  • I want to decrease the recoil of the hamr, but I can't find any mods to do so.
    JezuzLizardundefined JezuzLizard

    If you want someone to help you you are going to have to give enough information. You didn't say whether it was zombies or multiplayer, or whether you wanted to add this mod to your server or private match. There is a mod called BO2 Reimagined for zombies mode that I'm pretty sure reduces the recoil on the hamr as one of its many changes, but if you just wanted the recoil change you'll have to make your own mod.

    BO2 Modding Support & Discussion

  • Im having trouble logging in
    JezuzLizardundefined JezuzLizard

    You can't login to a service without an internet connection. The point of logging in or signing in is so your login information are sent to an authentication server which then authenticates whether you are actually a valid user. So no internet connection means you can't play using the launcher.

    Launcher Support
  • 1
  • 2
  • 3
  • 4
  • 5
  • 45
  • 46
  • 2 / 46
  • Login

  • Don't have an account? Register

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