Guide:Partial-illithid

From bg3.wiki
Jump to navigation Jump to search

Appearance changes[edit section | visual editor]

Removing[edit section | visual editor]

Players may wish to reverse the cosmetic changes associated with Partial CeremorphosisPartial Ceremorphosis. The process is rather simple. With bg3se open, execute the command RemoveStatus(GetHostCharacter(), "TAD_PARTIAL_CEREMORPH") https://docs.baldursgate3.game/index.php?title=RemoveStatus to remove the cosmetic changes from the actively selected character. The mechanical changes are unaffected.

Adding[edit section | visual editor]

Should you wish to reinstate the cosmetic effects, this can be achieved with ApplyStatus(GetHostCharacter(), "TAD_PARTIAL_CEREMORPH", 1) https://docs.baldursgate3.game/index.php?title=ApplyStatus.

Targeting[edit section | visual editor]

While selecting the characters is the most expedient method to target a given character, the companions can also be addressed directly by replacing GetHostCharacter() with the following UUIDs (enclosed in quotes):

  • AstarionAstarionc7c13742-bacd-460a-8f65-f864fe41f255 https://bg3.norbyte.dev/search?q=uuid:c7c13742-bacd-460a-8f65-f864fe41f255
  • GaleGalead9af97d-75da-406a-ae13-7071c563f604 https://bg3.norbyte.dev/search?q=uuid:ad9af97d-75da-406a-ae13-7071c563f604
  • KarlachKarlach2c76687d-93a2-477b-8b18-8a14b549304c https://bg3.norbyte.dev/search?q=uuid:2c76687d-93a2-477b-8b18-8a14b549304c
  • Lae'zelLae'zel58a69333-40bf-8358-1d17-fff240d7fb12 https://bg3.norbyte.dev/search?q=uuid:58a69333-40bf-8358-1d17-fff240d7fb12
  • MinscMinsc0de603c5-42e2-4811-9dad-f652de080eba https://bg3.norbyte.dev/search?q=uuid:0de603c5-42e2-4811-9dad-f652de080eba
  • MintharaMinthara25721313-0c15-4935-8176-9f134385451b https://bg3.norbyte.dev/search?q=uuid:25721313-0c15-4935-8176-9f134385451b
  • ShadowheartShadowheart3ed74f06-3c60-42dc-83f6-f034cb47c679 https://bg3.norbyte.dev/search?q=uuid:3ed74f06-3c60-42dc-83f6-f034cb47c679
  • WyllWyllc774d764-4a17-48dc-b470-32ace9ce447d https://bg3.norbyte.dev/search?q=uuid:c774d764-4a17-48dc-b470-32ace9ce447d

Notes[edit section | visual editor]

  • The status TAD_PARTIAL_CEREMORPH https://bg3.norbyte.dev/search?q=name:TAD_PARTIAL_CEREMORPH+type:status is currently only known to control the appearance change. Should it turn out that removing it has some unwanted effect, the actual material override 398ca8ae-c3c0-47f5-8e45-d9402e198389 https://bg3.norbyte.dev/search?q=uuid:398ca8ae-c3c0-47f5-8e45-d9402e198389 can be removed and applied with RemoveCustomMaterialOverride https://docs.baldursgate3.game/index.php?title=RemoveCustomMaterialOverride and AddCustomMaterialOverride https://docs.baldursgate3.game/index.php?title=AddCustomMaterialOverride respectively.
  • If you want to make your life easier, just run for _, v in pairs(Osi.DB_PartyMembers:Get(nil)) do RemoveStatus(v[1], "TAD_PARTIAL_CEREMORPH") RemoveCustomMaterialOverride(v[1], "398ca8ae-c3c0-47f5-8e45-d9402e198389") end to clear the status and override for everyone in your active party.