Last Epoch Save Editor

Upload *YOUR* gamehacking tools/helpers here
User avatar
Ash06
Expert Cheater
Expert Cheater
Posts: 244
Joined: Wed Oct 09, 2019 2:34 pm
Reputation: 116

Re: Last Epoch Save Editor

Post by Ash06 »

angsaar wrote:
Tue Mar 21, 2023 7:26 pm
Every time I try to save a character from version 0.9f of the game with the editor, the character disappears from the character list in game
All work for me
xytras wrote:
Tue Mar 21, 2023 1:33 pm
when trying to modify "Legendary Potential" to any number it will remove the existing and make it 0. Any ideas?
Sorry for that, i checked code for Unique data

Code: Select all

private List<int> UniqueData()
{
	List<int> Data = new List<int>();
	Data.Add((int)numericUpDown_patch.Value); //0
	Data.Add((int)numericUpDown_Type.Value); //1
	Data.Add((int)numericUpDownBaseId.Value); //2
	Data.Add((int)numericUpDownQuality.Value); //3
	foreach (int value in Prefixs) { Data.Add(value); } //4 to 6
	int unique_id = 0;
	int x = (int)numericUpDown_UniqueId.Value / 256;
	unique_id = (int)numericUpDown_UniqueId.Value - ( x * 256);
	Data.Add(x); //7
	Data.Add(unique_id); //8
	foreach (int value in UniqueAffixs) { Data.Add(value); } //9 to 16
	Data.Add(0); //17
	
	return Data;
}
Fix :

Code: Select all

- Data.Add(0); //17
+ Data.Add((int)numericUpDown_LegendaryPotencial.Value);
Ash06 wrote:
Wed Aug 18, 2021 10:39 pm
v4.3
- Fix Legendary Potential
- Unlock Legendary from Set item
- Update Item Infos
- Unlock Base item description for affixs, runes, glyphs and keys
- Unlock Affixs range

angsaar
Noobzor
Noobzor
Posts: 12
Joined: Tue Jun 08, 2021 4:12 pm
Reputation: 1

Re: Last Epoch Save Editor

Post by angsaar »

Ash06 wrote:
Tue Mar 21, 2023 7:58 pm
angsaar wrote:
Tue Mar 21, 2023 7:26 pm
Every time I try to save a character from version 0.9f of the game with the editor, the character disappears from the character list in game
All work for me
Well yea of course it works for you, you weren't using 4.2 anymore since you just published 4.3 :P And yea, 4.3 fixed the problem for me.

Gigex
Noobzor
Noobzor
Posts: 7
Joined: Wed Jul 26, 2017 8:37 am
Reputation: 17

Re: Last Epoch Save Editor

Post by Gigex »

Hi, thx for the save editor.

I think you're missing the opal ring infos

Code: Select all

{"base_id":10,"base_name":"Opal Ring","implicit":["+(6% to 10%) Increased Cooldown Recovery Speed","+(1 to 2) to All Attributes"],"level":52}

estu4g
What is cheating?
What is cheating?
Posts: 1
Joined: Sat Jun 04, 2022 4:22 pm
Reputation: 0

Re: Last Epoch Save Editor

Post by estu4g »

Hi, I tried this but the path box said Directory Not Found. Does it need to be extracted in a specific folder location? I'm on windows 10

User avatar
Ash06
Expert Cheater
Expert Cheater
Posts: 244
Joined: Wed Oct 09, 2019 2:34 pm
Reputation: 116

Re: Last Epoch Save Editor

Post by Ash06 »

estu4g wrote:
Wed Mar 22, 2023 3:45 am
Hi, I tried this but the path box said Directory Not Found. Does it need to be extracted in a specific folder location? I'm on windows 10
Image

Code: Select all

public static List<string> WinUsers()
{
    List<string> result = new List<string>();
    string path = @"C:\Users\";
    if (Directory.Exists(path))
    {
        Directory.GetDirectories(path);
        foreach (var d in Directory.GetDirectories(path))
        {
            string user = d.Substring(path.Length, d.Length - path.Length);
            if ((user != "All Users") && (user != "Default") && (user != "Default User") && (user != "Default.migrated"))
            { result.Add(user); }
        }
    }
    return result;
}
Fix (Remove user restriction)

Code: Select all

- string user = d.Substring(path.Length, d.Length - path.Length);
- if ((user != "All Users") && (user != "Default") && (user != "Default User") && (user != "Default.migrated"))
- { result.Add(user); }
+ result.Add(d.Substring(path.Length, d.Length - path.Length)); 
If you use "All Users", "Default", "Default User" or "Default.migrated", you can't see the path.
Replace "LastEpochLib.dll" with the one in "LastEpochLib.rar" to solve your problem
Otherwise, tell me the windows user you're using for the game, and I could check why you can't see the save path.
Gigex wrote:
Wed Mar 22, 2023 12:05 am
I think you're missing the opal ring infos
Image
You've right, sorry, take "Rings.rar", contain json + icon for the missing ring ^^.
Attachments
LastEpochLib.rar
(22.58 KiB) Downloaded 240 times
Rings.rar
(5.94 KiB) Downloaded 185 times

Eccoloqui
What is cheating?
What is cheating?
Posts: 3
Joined: Wed Mar 22, 2023 3:20 pm
Reputation: 0

Re: Last Epoch Save Editor

Post by Eccoloqui »

i dont understand why i cant see the shard page in the editor, can someone help me? i cannot add any shard
also in the database folder under Material i have only Gliph and Runes

it seems im missing the database Files, but i extracted the tool correctly everything should be good

User avatar
Ash06
Expert Cheater
Expert Cheater
Posts: 244
Joined: Wed Oct 09, 2019 2:34 pm
Reputation: 116

Re: Last Epoch Save Editor

Post by Ash06 »

Shard page is lock because shard_id isn't egal to affix_id, so i have 512 prefix ans 160 suffixes to add to database.
But you can add an affix in your character inventory then set quantity
I can unlock à "GetAllShards" button like before

I check 0.9f and i have 2 unique and some basic helm, body, and two handed staff missing items

Eccoloqui
What is cheating?
What is cheating?
Posts: 3
Joined: Wed Mar 22, 2023 3:20 pm
Reputation: 0

Re: Last Epoch Save Editor

Post by Eccoloqui »

Ash06 wrote:
Thu Mar 23, 2023 8:29 am
Shard page is lock because shard_id isn't egal to affix_id, so i have 512 prefix ans 160 suffixes to add to database.
But you can add an affix in your character inventory then set quantity
I can unlock à "GetAllShards" button like before

I check 0.9f and i have 2 unique and some basic helm, body, and two handed staff missing items
ok thanks! so its normal i can't add shard and that i dont see the getallshard button?
i'll try to add them in the inventory thanks again

i tried adding shards to inventory but i can't make it.. the BASE ID is red and i can't select anything

Eccoloqui
What is cheating?
What is cheating?
Posts: 3
Joined: Wed Mar 22, 2023 3:20 pm
Reputation: 0

Re: Last Epoch Save Editor

Post by Eccoloqui »

this is what i see when i try to create shard in the inventory
[Link]
[Link]

Soul123456
What is cheating?
What is cheating?
Posts: 1
Joined: Thu Mar 23, 2023 10:43 pm
Reputation: 0

Re: Last Epoch Save Editor

Post by Soul123456 »

Hi, thx for the save editor and your time

I think the editor is missing the unique helmet Fractured Crown, and the json value for the celestial helmet is wrong. When i tried to create a celestial helment it turn out as an Arcane Visage.

[Link]

Update:
I found the The celestial helmet, it is mapped as the Gilded Crown.

User avatar
Ash06
Expert Cheater
Expert Cheater
Posts: 244
Joined: Wed Oct 09, 2019 2:34 pm
Reputation: 116

Re: Last Epoch Save Editor

Post by Ash06 »

There a lot of new basic helm and body, so some item id was changed
Image
Soul123456 wrote:
Thu Mar 23, 2023 10:52 pm
I think the editor is missing the unique helmet Fractured Crown
Take the archive for basic helm and body fix (should be working with the lastest release)
Fractured Crown is in the archive too

I just finished updating the apps to generate the database from latest live, now i need to check all ids in database
Image
Attachments
Armors.rar
(1.52 MiB) Downloaded 223 times

absolfd
What is cheating?
What is cheating?
Posts: 1
Joined: Fri Mar 24, 2023 11:27 pm
Reputation: 0

Re: Last Epoch Save Editor

Post by absolfd »

keep getting directory not found, replaced LastEpochLib.dll" with the one in "LastEpochLib.rar" and it still cant find the game.

haydo224
Noobzor
Noobzor
Posts: 8
Joined: Sat Feb 25, 2023 8:57 am
Reputation: 0

Re: Last Epoch Save Editor

Post by haydo224 »

"Increased Warpath Area" on Idols Don't Show or is that just me?
same goes with "Area of Area skills" on gear dont show.

nashequil
What is cheating?
What is cheating?
Posts: 4
Joined: Wed Mar 28, 2018 12:11 pm
Reputation: 0

Re: Last Epoch Save Editor

Post by nashequil »

I get a critical error clicking on some shards in my inventory. I wanted to increase quantity since we can't add them.
I take it all the shards are not ID'd yet?

czekos
What is cheating?
What is cheating?
Posts: 1
Joined: Tue Mar 28, 2023 12:24 pm
Reputation: 0

Re: Last Epoch Save Editor

Post by czekos »

can someone share saved files with unlocked waypoints, bonus passives and idols slot? cant find option for this in editor and dont have any offline saves
---

what is "type" when im creating item? i can choose 1-7 but i think it should be prefix/sufix? (yeah, after saving item it is working)
and why i cant find void cleave in skill list? (add v01cv to sentinel skills)

Post Reply

Who is online

Users browsing this forum: No registered users