Search found 11 matches

by bobbls
Mon Feb 27, 2023 4:40 am
Forum: Tables
Topic: Hogwarts Legacy
Replies: 418
Views: 249269

Re: Hogwarts Legacy

Is there any way we could somehow alter locks? like LOCK unlocked doors? Let me explain, I unlocked Alohomora early in the game obviously with this all spells unlock. I kinda unlocked the door to the Alohomora quest before I should have. So now that I have the actual quest the door it requires me t...
by bobbls
Wed Feb 15, 2023 6:02 pm
Forum: Tables
Topic: Hogwarts Legacy [Engine:Unreal 4.27.2]
Replies: 385
Views: 97648

Re: Hogwarts Legacy [Engine:Unreal 4.27.2]

This command for knulls did work. So what would be wrong with my command? I do have the jobberknoll feathers https://i.imgur.com/r0RCfcD.png your query is using INSERT INTO which only works when there isnt a row already existing, since you have feathers you should use a different query, looked thro...
by bobbls
Wed Feb 15, 2023 5:46 pm
Forum: Tables
Topic: Hogwarts Legacy
Replies: 418
Views: 249269

Re: Hogwarts Legacy

Atarugolan wrote:
Wed Feb 15, 2023 11:17 am
Someone have found solution to skip objective? I stuck with mission about alohomora, because I have already open this door he ask me to unlock, any idea?
There's a few videos on youtube about skipping entire quests, i'd try that if it hasn't been patched
by bobbls
Wed Feb 15, 2023 5:43 pm
Forum: Tables
Topic: Hogwarts Legacy [Engine:Unreal 4.27.2]
Replies: 385
Views: 97648

Re: Hogwarts Legacy [Engine:Unreal 4.27.2]

Could someone help me? I'm not sure what I'm doing wrong with the SQLite Exec I'm trying different codes but none seem to work, for example I'm trying to use this one that I got from the InventoryDynamic, I even tried to update the time manually and it still have no effect in game INSERT INTO "main...
by bobbls
Fri Feb 10, 2023 8:42 pm
Forum: Tables
Topic: Hogwarts Legacy
Replies: 418
Views: 249269

Re: Hogwarts Legacy

inventorySizeModification.Current will let me change the inventory size. but it isn't permanent. does anyone know how to sustain the inventory size? There's an open-source save editor on github with limited functionality, one of which being increasing the size of your inventory i'm gonna avoid link...
by bobbls
Fri Feb 10, 2023 2:24 pm
Forum: Tables
Topic: Hogwarts Legacy
Replies: 418
Views: 249269

Re: Hogwarts Legacy

I tried to glance over most of the posts, and I didn't see anything but I think I have an issue the CE might have created. I have multiple of the same thing, I cannot sell, it doesn't even give me a description. truthfully I don't know how this happened cause while I had the cheat opened, I don't t...
by bobbls
Wed Feb 08, 2023 5:55 pm
Forum: Tables
Topic: Hogwarts Legacy
Replies: 418
Views: 249269

Re: Hogwarts Legacy

Has anyone played with the "LootDropRareChanceModifier"? I've tried poking it before looting chests and can't really notice a difference in the end result
by bobbls
Thu Dec 10, 2020 9:32 am
Forum: Tables
Topic: Cyberpunk 2077 [Engine:REDengine 4]
Replies: 366
Views: 330416

Re: Cyberpunk 2077 [Engine:REDengine 4]

Anyone have luck with the script posted before for dismanting weapons: seems the AOB is failing on steam versions
edit: loaded it as a seperate ct file and its fine
by bobbls
Tue Nov 26, 2019 12:00 am
Forum: Tables
Topic: Star Wars Jedi: Fallen Order | Cosmetics Unlocker, Saber Color Changer and more
Replies: 70
Views: 45959

Re: Star Wars Jedi: Fallen Order [Engine:Unreal 4.21] - Console enabler, Dumper and more..

Once more another dumb script added to someone elses table for ease of use, for whatever reason setting seperate lightsabers sometimes causes one to get written to some crazy value but I can't for the life of me figure it out. This one's a script that'll write a copy-pasteable preset script for your...
by bobbls
Mon Nov 25, 2019 8:43 am
Forum: Tables
Topic: Star Wars Jedi: Fallen Order | Cosmetics Unlocker, Saber Color Changer and more
Replies: 70
Views: 45959

Re: Star Wars Jedi: Fallen Order [Engine:Unreal 4.21] - Console enabler, Dumper and more..

Back at it again with the useless posts, heres another edit of muppets' table. This adds three helpers, one for setting each blades color from a hex code, and one to convert hex codes into the games odd rgb format.
by bobbls
Sun Nov 24, 2019 9:30 pm
Forum: Tables
Topic: Star Wars Jedi: Fallen Order | Cosmetics Unlocker, Saber Color Changer and more
Replies: 70
Views: 45959

Re: Star Wars Jedi: Fallen Order [Engine:Unreal 4.21] - Console enabler, Dumper and more..

{$LUA} if syntaxcheck then return end [ENABLE] r = 0.0 g = 0.4 b = 0.8 function rgbToHex(rgb) local hexadecimal = '0X' for key, value in pairs(rgb) do local hex = '' while(value > 0)do local index = math.fmod(value, 16) + 1 value = math.floor(value / 16) hex = string.sub('0123456789ABCDEF', index, ...