Page 13 of 26

Re: Hogwarts Legacy [Engine:Unreal 4.27.2]

Posted: Sat Feb 11, 2023 8:38 pm
by LorgrenBenirus
SunBeam wrote:
Sat Feb 11, 2023 7:21 pm
Have you read this? -> viewtopic.php?p=285803#p285803. Please confirm that fixes it.
Thanks for the link. Indeed, I tried that as soon as I saw it being mentioned, have that setting ticked but unfortunately I still seem to get this message.

Re: Hogwarts Legacy [Engine:Unreal 4.27.2]

Posted: Sat Feb 11, 2023 9:00 pm
by Gc43
SunBeam wrote:
Sat Feb 11, 2023 8:31 pm
Gc43 wrote:
Sat Feb 11, 2023 8:28 pm
...
Here come the SQL pros ;) Cool stuff. I can tell from how the statement is formatted that you're using this sh@# everyday :D
I wouldn't say I'm a pro, just good at using google to find out how a coding language works but ty.

Re: Hogwarts Legacy [Engine:Unreal 4.27.2]

Posted: Sat Feb 11, 2023 9:03 pm
by nhoxsahaki
Gc43 wrote:
Sat Feb 11, 2023 8:28 pm
lincsyboi wrote:
Sat Feb 11, 2023 7:29 pm
Gc43 wrote:
Sat Feb 11, 2023 11:55 am
Wand handles for days, not really only 42 of them all unlocked

Code: Select all

UPDATE CollectionDynamic SET ItemState = "Obtained", UpdateTime = 596359858070379192 WHERE CategoryID = "WandStyle";
INSERT OR REPLACE INTO LocksDynamic (LockID, ELockState) SELECT LockID, 0 FROM LockDefinition WHERE LockID like "h0%_m%";
Save and reload for it to take effect

also extra edit, Talent points sql code

Code: Select all

UPDATE MiscDataDynamic SET DataValue = 12 Where DataOwner = "Player0" and DataName = "PerkPoints"
Would love to see this for the other cosmetics categories, cloaks, outfits, neckwear etc! :) <3
Done

Code: Select all

UPDATE CollectionDynamic SET ItemState = "Obtained", UpdateTime = 596359858070379192 WHERE CategoryID = "gear";
INSERT OR REPLACE INTO LocksDynamic (LockID, ELockState) SELECT LockID, 0 FROM LockDefinition WHERE LockID like "back\____\_%" ESCAPE '\' or LockID like "outfit\____\_%" ESCAPE '\' or LockID like "face\____\_%" ESCAPE '\' or LockID like "hand\____\_%" ESCAPE '\' or LockID like "head\____\_%" ESCAPE '\' or LockID like "neck\____\_%" ESCAPE '\';
Save and reload for it to take effect, also includes the other exclusives
Did you get the conjuration stuff I tried can't find the LockID for Conjuration, its start INT

edit: nvm I found it

Code: Select all

UPDATE CollectionDynamic SET ItemState = "Obtained", UpdateTime = 596359858070379192 WHERE CategoryID = "Conjuration";

INSERT OR REPLACE INTO LocksDynamic (LockID, ELockState) SELECT LockID, 0 FROM LockDefinition WHERE LockID like "int________________%";


Re: Hogwarts Legacy [Engine:Unreal 4.27.2]

Posted: Sat Feb 11, 2023 9:10 pm
by SunBeam
Saug wrote:
Sat Feb 11, 2023 7:06 pm
...
Posted a new table update:
  • you do not need anymore to manually copy-paste the UpdateTime value into your SQL statements!
Download from main post.

Re: Hogwarts Legacy [Engine:Unreal 4.27.2]

Posted: Sat Feb 11, 2023 9:22 pm
by Gc43
nhoxsahaki wrote:
Sat Feb 11, 2023 9:03 pm
Did you get the conjuration stuff I tried can't find the LockID for Conjuration, its start INT

edit: nvm I found it

Code: Select all

UPDATE CollectionDynamic SET ItemState = "Obtained", UpdateTime = 596359858070379192 WHERE CategoryID = "Conjuration";

INSERT OR REPLACE INTO LocksDynamic (LockID, ELockState) SELECT LockID, 0 FROM LockDefinition WHERE LockID like "int________________%";

Not sure if it's int, will have to try it that but what I used which also seemed to work is

Code: Select all

UPDATE CollectionDynamic SET ItemState = "Obtained", UpdateTime = 596359858070379192 WHERE CategoryID = "Conjurations";
INSERT OR REPLACE INTO LocksDynamic (LockID, ELockState) SELECT LockID, 0 FROM LockDefinition WHERE LockID like "Transfiguration\_%" ESCAPE '\';

Re: Hogwarts Legacy [Engine:Unreal 4.27.2]

Posted: Sat Feb 11, 2023 9:31 pm
by nhoxsahaki
Gc43 wrote:
Sat Feb 11, 2023 9:22 pm
nhoxsahaki wrote:
Sat Feb 11, 2023 9:03 pm
Did you get the conjuration stuff I tried can't find the LockID for Conjuration, its start INT

edit: nvm I found it

Code: Select all

UPDATE CollectionDynamic SET ItemState = "Obtained", UpdateTime = 596359858070379192 WHERE CategoryID = "Conjuration";

INSERT OR REPLACE INTO LocksDynamic (LockID, ELockState) SELECT LockID, 0 FROM LockDefinition WHERE LockID like "int________________%";

Not sure if it's int, will have to try it that but what I used which also seemed to work is

Code: Select all

UPDATE CollectionDynamic SET ItemState = "Obtained", UpdateTime = 596359858070379192 WHERE CategoryID = "Conjurations";
INSERT OR REPLACE INTO LocksDynamic (LockID, ELockState) SELECT LockID, 0 FROM LockDefinition WHERE LockID like "Transfiguration\_%" ESCAPE '\';
Did you find broom?

Re: Hogwarts Legacy [Engine:Unreal 4.27.2]

Posted: Sat Feb 11, 2023 10:02 pm
by Blackthorn11
Is there a command that can be used to change tracked quest to complete (some of these quest are boring)

Re: Hogwarts Legacy [Engine:Unreal 4.27.2]

Posted: Sat Feb 11, 2023 10:04 pm
by nhoxsahaki
Traits unlock

Code: Select all

UPDATE CollectionDynamic SET ItemState = "Obtained", UpdateTime = 596359858070379192 WHERE CategoryID = "Traits";

INSERT OR REPLACE INTO LocksDynamic (LockID, ELockState) SELECT LockID, 0 FROM LockDefinition WHERE LockID like "GearTrait_____________%";

Re: Hogwarts Legacy [Engine:Unreal 4.27.2]

Posted: Sat Feb 11, 2023 10:19 pm
by Saug
SunBeam wrote:
Sat Feb 11, 2023 9:10 pm
Saug wrote:
Sat Feb 11, 2023 7:06 pm
...
Posted a new table update:
  • you do not need anymore to manually copy-paste the UpdateTime value into your SQL statements!
Download from main post.
It's working for me now :O ! Thank you Sun.

Re: Hogwarts Legacy [Engine:Unreal 4.27.2]

Posted: Sat Feb 11, 2023 10:22 pm
by nhoxsahaki
Dont know what I did my game is bricked it, either traits or broom unlock. It stuck with the in shadow of relic quest can't finish it nor abandon it

Re: Hogwarts Legacy [Engine:Unreal 4.27.2]

Posted: Sat Feb 11, 2023 11:02 pm
by SunBeam
nhoxsahaki wrote:
Sat Feb 11, 2023 10:22 pm
Dont know what I did my game is bricked it, either traits or broom unlock. It stuck with the in shadow of relic quest can't finish it nor abandon it
We don't know either, but please no complaining over spilled milk :)
Saug wrote:
Sat Feb 11, 2023 10:19 pm
...
Now that I finished the first quest, my UpdateTime is ticking as well. Since I'm in the "open world" now.

Re: Hogwarts Legacy [Engine:Unreal 4.27.2]

Posted: Sun Feb 12, 2023 1:07 am
by maliciousdelicious
Hiya, could anyone please help me. Does anyone by chance know the code to unlock talents? Or the individual talent id's

Re: Hogwarts Legacy [Engine:Unreal 4.27.2]

Posted: Sun Feb 12, 2023 2:08 am
by CalibreThaGoat
After reviewing the post made about,
>> 'aob_in_UObject_CallFunctionByNameWithArguments' not found. <<
I still for the life of me cannot figure out what is the issue. It's odd, i turned on MEM_MAPPED and I restarted the game and left it on the title screen to see but no luck.

Re: Hogwarts Legacy [Engine:Unreal 4.27.2]

Posted: Sun Feb 12, 2023 5:00 am
by Avarenal
Has anyone determined what the formula is for calculating player level from ExperienceManager->ExperiencePoints ? I couldn't find a reference in the save data where the player level is stored.

Re: Hogwarts Legacy [Engine:Unreal 4.27.2]

Posted: Sun Feb 12, 2023 5:18 am
by SunBeam
Avarenal wrote:
Sun Feb 12, 2023 5:00 am
Has anyone determined what the formula is for calculating player level from ExperienceManager->ExperiencePoints ? I couldn't find a reference in the save data where the player level is stored.
There's no formula. There's a Level minimum and maximum. You XP is iterated through the table of levels, starting from 1. The result, the counter, is the Level.

Example:

1 | 0
2 | 500
3 | 1030
etc.

So if your XP is 800, then 800 > 500 and 800 < 1030. Iterator stops at 2. Level = 2.