Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Actor Hadrian assigned to wrong quest faction #669

Closed
Constellation-VASCO opened this issue Nov 23, 2023 · 1 comment
Closed

Actor Hadrian assigned to wrong quest faction #669

Constellation-VASCO opened this issue Nov 23, 2023 · 1 comment
Labels
Fix Ready A fix for this issue is ready for merging and testing Platform: PC (Xbox) This issue is being reported from the PC release of Starfield on Xbox Game Pass Type: NPCs Relates to non-player characters (NPCs)

Comments

@Constellation-VASCO
Copy link
Collaborator

Crew_Elite_Hadrian "Hadrian" [NPC_:0029C17F]
has been incorrectly asigned to ConstellationFaction [FACT:000191DC]
rather than CrimeFactionUC "United Colonies" [FACT:0005BD93] appropriate for the UC quest line.
Noticed when creating faction kickout handlers.


Details

read summary

Game Version

1.7.36.0

Language

English (EN)

New Game

Yes

Reproduction Steps

Look at Crew_Elite_Hadrian "Hadrian" [NPC_:0029C17F] in xEdit
Notice how "referenced by" is UC quests not MQ quests.

@Constellation-VASCO Constellation-VASCO added Platform: PC (Xbox) This issue is being reported from the PC release of Starfield on Xbox Game Pass Type: NPCs Relates to non-player characters (NPCs) labels Nov 23, 2023
@Constellation-VASCO
Copy link
Collaborator Author

Constellation-VASCO commented Nov 23, 2023

Ingame fix:

Actor Crew_Elite_Hadrian = Game.GetFormFromFile(0x002B17C4, "starfield.esm") as Actor
Faction ConstellationFaction  = Game.GetFormFromFile(0x000191DC, "starfield.esm") as Faction
Faction CrimeFactionUC = Game.GetFormFromFile(0x0005BD93, "starfield.esm") as Faction
Crew_Elite_Hadrian.RemoveFromfaction(ConstellationFaction)
Crew_Elite_Hadrian.AddToFaction(CrimeFactionUC)

@Pickysaurus Pickysaurus added the Fix Ready A fix for this issue is ready for merging and testing label Nov 23, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Fix Ready A fix for this issue is ready for merging and testing Platform: PC (Xbox) This issue is being reported from the PC release of Starfield on Xbox Game Pass Type: NPCs Relates to non-player characters (NPCs)
Projects
Status: Closed
Development

No branches or pull requests

2 participants