UPDATE CollectionDynamic SET ItemState = "Obtained", WHERE CategoryID = "Broom";
INSERT OR REPLACE INTO LocksDynamic (LockID, ELockState) SELECT LockID, 0 FROM LockDefinition WHERE LockID like "Broom\_%" ESCAPE '\';
Doesn't Seem to work, only updates the collections (13/13) on the brooms
UPDATE CollectionDynamic SET ItemState = "Obtained", WHERE CategoryID = "Broom";
INSERT OR REPLACE INTO LocksDynamic (LockID, ELockState) SELECT LockID, 0 FROM LockDefinition WHERE LockID like "Broom\_%" ESCAPE '\';
Doesn't Seem to work, only updates the collections (13/13) on the brooms
I believe it you need to insert Broom_Upgrade1, 2 and 3 in LootItemsDynamic and also within LocksDynamic
P.S does anyone know how to make the Merlin Trails achievement proc for steam achievements?
CREATE TRIGGER PotionStorageUnlimited
AFTER UPDATE OF ItemID
ON InventoryDynamic
WHEN CharacterID = "Player0" AND
HolderID = "HealthPotionStorage" AND
new.Count < old.Count
BEGIN
UPDATE InventoryDynamic
SET Count = old.Count
WHERE CharacterID = "Player0" AND
HolderID = "HealthPotionStorage" AND
ItemID = old.ItemID;
END;
it will make your potion wont decrease when you use it.
Hello. I'm completely new here. I found this place searching for a way to get those damn last 12 talent points in order to actually be able to unlock all talents. I've read some of the comments but since I have 0 knowledge about cheat engine I'm not quite yet sure how to do it.
could someone guide me through the simplest method of editing the talent points in order to get another 12 at level 40?
Hello. I'm completely new here. I found this place searching for a way to get those damn last 12 talent points in order to actually be able to unlock all talents. I've read some of the comments but since I have 0 knowledge about cheat engine I'm not quite yet sure how to do it.
could someone guide me through the simplest method of editing the talent points in order to get another 12 at level 40?
Modify the current available talent value to 50 UPDATE MiscDataDynamic SET DataValue = 50 Where DataOwner = "Player0" and DataName = "PerkPoints"
If you have more after use.
You can change it to 0,like DataValue = 0
Hello. I'm completely new here. I found this place searching for a way to get those damn last 12 talent points in order to actually be able to unlock all talents. I've read some of the comments but since I have 0 knowledge about cheat engine I'm not quite yet sure how to do it.
could someone guide me through the simplest method of editing the talent points in order to get another 12 at level 40?
Modify the current available talent value to 50 UPDATE MiscDataDynamic SET DataValue = 50 Where DataOwner = "Player0" and DataName = "PerkPoints"
If you have more after use.
You can change it to 0,like DataValue = 0
Hello. I'm completely new here. I found this place searching for a way to get those damn last 12 talent points in order to actually be able to unlock all talents. I've read some of the comments but since I have 0 knowledge about cheat engine I'm not quite yet sure how to do it.
could someone guide me through the simplest method of editing the talent points in order to get another 12 at level 40?
Modify the current available talent value to 50 UPDATE MiscDataDynamic SET DataValue = 50 Where DataOwner = "Player0" and DataName = "PerkPoints"
If you have more after use.
You can change it to 0,like DataValue = 0
Where do I find that line?
You said you are new, right? So I am assuming you downloaded cheat engine itself and the cheat table attached on page 1 of this post? Then while playing the game you started cheat engine and hooked it into your hogwarts legacy process. Then you "opened" this posts cheat table. Next press "Enable" then new options should appear, one of them "Toggle SQLite Exec UDF", press this one and a new window will open, here copy the command you found UPDATE MiscDataDynamic SET DataValue = 12 Where DataOwner = "Player0" and DataName = "PerkPoints"
To submit the request press shift enter in that Cheat engine empty textbook window after writing the above command.
I updated it to the 12 you want as the new number of available talent points.
Last edited by halcyon on Tue Feb 28, 2023 1:20 am, edited 1 time in total.