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

Plutonium

JezuzLizardundefined

JezuzLizard

@JezuzLizard
Plutonium Staff
About
Posts
919
Topics
17
Shares
0
Groups
3
Followers
228
Following
85

Posts

Recent Best Controversial

  • Remove Zombie Dying by Himself
    JezuzLizardundefined JezuzLizard

    Ivobardolf You need to use getfunction if you want to do it in one file. Otherwise you'll get unresolved externals when loading on a map that doesn't have the functions you reference.

    BO2 Modding Releases & Resources

  • Mystery Box Scripts
    JezuzLizardundefined JezuzLizard

    Juliebas There is no weighting system in BO2. All weapons except the Ray Gun Mark II have equal chance of being picked. RGM2 just has a 66% chance on being rolled to reroll for a different gun instead.

    BO2 Modding Releases & Resources

  • I have a weird "bug" on BO2 *loading* when I enter the game
    JezuzLizardundefined JezuzLizard

    Oreokid Do you have custom images installed?

    Launcher Support

  • [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
  • 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