Difference between revisions of "Enemy Duplication Tutorial (WIP)"

From Pikmin Technical Knowledge Base
Jump to navigation Jump to search
(added enemy dupe method page for p4)
 
Line 62: Line 62:
 
after making a new entry, save and compile your new DT_TekiParameter file.
 
after making a new entry, save and compile your new DT_TekiParameter file.
  
=Manifest.json + Dependencies=
+
=Manifest.json + Chunk ID's=
  
 
For this example we will be using the original Manifest.json that comes with *[https://pikmintkb.com/wiki/UCas/UToc_Packer UToc Packer]
 
For this example we will be using the original Manifest.json that comes with *[https://pikmintkb.com/wiki/UCas/UToc_Packer UToc Packer]
Line 81: Line 81:
  
 
For this example, we will be sacrificing an unused file to give our new entity a slot.
 
For this example, we will be sacrificing an unused file to give our new entity a slot.
 +
 +
I will be using this section below with the following chunk id
 +
 +
    {
 +
      "Path": "/Carrot4/Content/Carrot4/Placeables/Teki/GDadoro.uasset",
 +
      "ChunkId": "beba578ec3e0eb2800000002"
 +
    },
 +
 +
Simply change your file path to your new file you want to register in the game, for this example I changed my file to Placeables/Teki/GDadoro.uasset
 +
 +
Now we need to find the dependencies of the file so that we can link them to the needed dependencies for GDodoro to prevent crashing.
 +
 +
=Adding Dependencies=
 +
 +
*Dependencies = Files that work and register in tandem with a blueprint file or other related files to make an enemy work
 +
 +
To find the dependencies and attach them to our new enemy, we must first look at GDodoro's blueprint entry and it's chunk ID
 +
 +
The chunk ID for GDodoro is "fa68a55fd087426200000002"
 +
 +
*Remove the 00000002 file type identifier and take the unique id "fa68a55fd0874262"
 +
 +
*Convert "fa68a55fd0874262" into a decimal value
 +
 +
*"fa68a55fd0874262" converted to decimal is "18043853737998893666"
 +
 +
Search for "18043853737998893666" in the manifest.json and view the example image below
  
  

Revision as of 00:26, 14 January 2024

Basic summary of how to duplicate enemies using hard references in blueprint files, methods are not full proof and currently need more research to get working for all enemies.

Method Contributors

Requirements

Setting Up Your Blueprint File

  • Every enemy comes with a blueprint file corresponding to their enemy ID
  • Every blueprint file is located within Placeables/Teki/Enemy_ID

Step 1: Grab your enemy file of choice, for this example we will be using /Placeables/Teki/GDodoro.uasset.

Inside of the blueprint file you need to change various strings to get the enemy to work and be registered as it's own entity

  • 0x2155 = ENEMY_C ID
  • 0x16A5 = Default_C ID
  • 0x1813 = Teki Parameter ID
  • 0x180B = Actor Name ID
  • 0x638 = Soft Reference Path

Here I have documented the offsets you need to go to, for this example, we will be changing the string GDodoro to GDadoro

  • GDodoro_C = GDadoro_C
  • Default__GDodoro_C = Default__GDadoro_C
  • DODORO = DADORO
  • Dodoro = Dadoro
  • %/Game/Carrot4/Placeables/Teki/GDodoro = %/Game/Carrot4/Placeables/Teki/GDadoro

DT_TekiParameter Entry

After setting up your blueprint, navigate to the file labeled TekiParameter located in.

  • Core\GActor\DT_TekiParameter.uasset

Decompile this file using the *P4UassetEditor

Inside of the JSON, navigate to the bottom of the Teki Parameter file and create a new entry for your duplicated enemy.

[Example Screenshot]

Inside of this entry, we can see two particular references to the original blueprint we modified

those entries being the following.

  • 0x1813 = Teki Parameter ID
  • 0x180B = Actor Name ID

change the entries to match the modified blueprint's strings

Teki Parameter ID = DADORO Actor Name ID = GDadoro

after making a new entry, save and compile your new DT_TekiParameter file.

Manifest.json + Chunk ID's

For this example we will be using the original Manifest.json that comes with *UToc Packer

Open the Manifest.json in Visual Studio or any editing software

Inside of the manifest.json, we will be looking at GDodoro.uasset's entry

   {
     "Path": "/Carrot4/Content/Carrot4/Placeables/Teki/GDodoro.uasset",
     "ChunkId": "fa68a55fd087426200000002"
   },

Above, we have the entry in the manifest.json for GDodoro's blueprint file

  • "Path" = self explanatory, it is the file path of the compiled item
  • "ChunkId" = the id used to dedicate the existing data to the dependencies section

For this example, we will be sacrificing an unused file to give our new entity a slot.

I will be using this section below with the following chunk id

   {
     "Path": "/Carrot4/Content/Carrot4/Placeables/Teki/GDadoro.uasset",
     "ChunkId": "beba578ec3e0eb2800000002"
   },

Simply change your file path to your new file you want to register in the game, for this example I changed my file to Placeables/Teki/GDadoro.uasset

Now we need to find the dependencies of the file so that we can link them to the needed dependencies for GDodoro to prevent crashing.

Adding Dependencies

  • Dependencies = Files that work and register in tandem with a blueprint file or other related files to make an enemy work

To find the dependencies and attach them to our new enemy, we must first look at GDodoro's blueprint entry and it's chunk ID

The chunk ID for GDodoro is "fa68a55fd087426200000002"

  • Remove the 00000002 file type identifier and take the unique id "fa68a55fd0874262"
  • Convert "fa68a55fd0874262" into a decimal value
  • "fa68a55fd0874262" converted to decimal is "18043853737998893666"

Search for "18043853737998893666" in the manifest.json and view the example image below


Basic Problems + Dilemma + Soft References

Currently, the major problem with enemy duplication is getting enemies to spawn using soft references

  • Examples of soft references are strings used in tandem with existing blueprints to spawn enemies
  • EX: "/Game/Carrot4/Placeables/Teki/GChappy.GChappy_C"
  • EX: "/Game/Carrot4/Placeables/Teki/GFireTank.GFireTank_C"
  • EX: "/Game/Carrot4/Placeables/Teki/GYukiFutakuchi.GYukiFutakuchi_C"

Using these strings which are referenced in the blueprint files of duplicate enemies will not automatically help new enemies to spawn in via the soft reference method (generator files, zukan bp, ECT), It is currently unknown how to get additional soft references to work, feel free to add onto this article should you put time into researching the issue.