AMM: Custom NPC appearances
How to add appearances to existing NPCs (via AMM)
The .lua file
- bin
- x64
- plugins
- cyber_engine_tweaks
-mods
- AppearanceMenuMod
- Collabs
- Custom Appearancesreturn {
-- Your beautiful name :)
modder = "manavortex",
-- This must be UNIQUE so be creative!
-- NO SPACES OR SYMBOLS ALLOWED
unique_identifier = "mana_Takemura_extra",
-- You can find this using AMM's Swap tab
-- and looking at the NPC
entity_id = "0xF43B2B48, 18",
-- Here you add a list of appearances you added
-- It has to be the exact name you added
-- to the entity file
appearances = {
"goro_takemura_finale_white_shirt",
"goro_takemura_saburo_bodyguard_shirt",
"goro_takemura_kimono_pants",
"goro_takemura_kimono_hakama",
"goro_takemura_haori_pants",
"goro_takemura_haori_hakama",
}
}
Last updated