bsaurer wrote:Thanks for the reply, can you explain how to put the decks into a content_pack?
Typically that is done by the creator of the mod as it involves putting Content Pack Enabling XML into a header of one of the wads that starts with
DATA_DLC_ (typically the core wad of the mod, or if using my Deck Builder it is automatically generated as Data_DLC_####_Content_Pack_Enabler.wad). Then all decks to be put into that content pack have the
content_pack attribute changed to refer to the specified content pack (in the enabling XML). Then everything is packed into their respective wads and done.
For this particular mod you would first need to unpack it, change the content_pack attribute in all playable decks (you can ignore land pools and unlocks) to something like
content_pack="500" which would make the deck tags look something like this:
- Code: Select all
<DECK uid="50000" personality="D14_PERSONALITY_500_KOTH.XML" deck_box_image="D14_50000_STRENGTH_OF_STONE_DECK_IMAGE" deck_box_image_locked="locked" content_pack="500" always_available="true" is_red="true" cheat_menu_filter_deck_type="Standard" tus_save_data_id="50000" ios_id_1="D14_DECK_UNLOCK_1" ios_id_2="D14_DECK_FOIL_1" steam_id_1="213850" steam_id_2="213850" android_id_1="d14_deck_unlock_01" android_id_2="d14_deck_foil_01" cheat_menu_filter_datapool="D14" name_tag="D14_50000_STRENGTH_OF_STONE" description_tag="D14_50000_STRENGTH_OF_STONE_DESCRIPTION">
Add the appropriate content pack enabling XML to the header which would make it look something like (note the UID tells what content pack we are enabling):
- Code: Select all
<?xml version="1.0"?>
<WAD_HEADER>
<ENTRY platform="ALL" source="Data_Decks_50000/DATA_ALL_PLATFORMS/" alias="Content" order="3" />
<ENTRY platform="TOUCH" source="Data_Decks_50000/DATA_TOUCH/" alias="Content" order="4" />
<ENTRY platform="PC" source="Data_Decks_50000/DATA_PC/" alias="Content" order="5" />
<ENTRY platform="X360" source="Data_Decks_50000/DATA_X360/" alias="Content" order="5" />
<ENTRY platform="PS3" source="Data_Decks_50000/DATA_PS3/" alias="Content" order="5" />
<ENTRY platform="IPAD" source="Data_Decks_50000/DATA_IPAD/" alias="Content" order="5" />
<CONTENTPACK UID="500">
<PD_SECTION>
<APP_ID ID="213850" />
</PD_SECTION>
<CONTENTFLAGS>
<AVATAR_CONTENT />
<DECK_CONTENT />
<GLOSSARY_CONTENT />
<UNLOCK_CONTENT />
</CONTENTFLAGS>
</CONTENTPACK>
</WAD_HEADER>
Then pack it all back up then change the name on the WAD to something like
DATA_DLC_50000.wad and that should be it.
NOTE: If there are 2 or more wads with content pack enabling XML for the same content pack UID then all decks in that content pack will be multiplied in the in-game manager by the number of copies of the enabling XML. To remove excess copies of decks, remove the excess copies of the enabling XML.