Page 6 of 51

Re: Last Epoch beta 0.8+ (Steam)

Posted: Sun Mar 28, 2021 9:44 am
by Messy6666
K1ng0fNo0b wrote:
Sun Mar 28, 2021 8:31 am
First of all thank you very much for all the work on this table^^.

If ever this can be useful I have noticed that my game systematically crashes when I use the forge with the "unlimited shard set to 99" crafting option.
Yes that was usefull and i can imagine it could crash.
so lol here's yet another LAST update from me:

viewtopic.php?f=4&t=14585

Re: Last Epoch beta 0.8+ (Steam)

Posted: Sun Mar 28, 2021 9:49 am
by K1ng0fNo0b
SinGul4ritY wrote:
Sun Mar 28, 2021 9:44 am
K1ng0fNo0b wrote:
Sun Mar 28, 2021 8:31 am
First of all thank you very much for all the work on this table^^.

If ever this can be useful I have noticed that my game systematically crashes when I use the forge with the "unlimited shard set to 99" crafting option.
Yes that was usefull and i can imagine it could crash.
so lol here's yet another LAST update from me:

viewtopic.php?f=4&t=14585
Thank you very much ^^

Re: Last Epoch beta 0.8+ (Steam)

Posted: Sun Mar 28, 2021 6:42 pm
by Bochi
Thanks for all the work you have done with regards to this Table, God Bless 神

Re: Last Epoch beta 0.8+ (Steam)

Posted: Sun Mar 28, 2021 10:17 pm
by Neraku34
SinGul4ritY wrote:
Sun Mar 28, 2021 7:04 am
Update:
2021-03-28 beta 08.1E
Last update from me
- fixed: Max Affix Rolls for others
- fixed: Equip Items of Any Class

viewtopic.php?f=4&t=14585

ps. I don't have any crashes here, not even on my old laptop, so can't help with that
Thank you so much for the update, and i did narrow the crashing down to the unlimited shards and the all shards options. i haven't crashed since i turned those off. not asking for those to be fixed i appreciate the last update and wish you the best at whatever you choose to move onto!

Re: Last Epoch beta 0.8+ (Steam)

Posted: Mon Mar 29, 2021 1:16 am
by floob
Any other table makers that may be able to help?

I'm trying to call MonolithZoneManager.CompleteObjective to finish a monolith but it crashes inside of GameAssembly.dll+0x1906840 and I can't find this function in my dump.

Re: Last Epoch beta 0.8+ (Steam)

Posted: Mon Mar 29, 2021 2:18 am
by Excalion89
Anyone know where the forge save data is kept? I just want to edit the file to edit how many shards I have as I am not sure how to edit the CT to give more than say 99 of the shards to use. I found out that the general stash is kept in the saves folder but it doesnt seem to include the forge in there at all as I put a shard in the stash then just tried to look for that same shard item ID in the file but it didnt exist so I can assume the forge save data is kept elsewhere.

Re: Last Epoch beta 0.8+ (Steam)

Posted: Mon Mar 29, 2021 6:09 am
by Messy6666
Neraku34 wrote:
Sun Mar 28, 2021 10:17 pm
Thank you so much for the update, and i did narrow the crashing down to the unlimited shards and the all shards options. i haven't crashed since i turned those off. not asking for those to be fixed i appreciate the last update and wish you the best at whatever you choose to move onto!
Welcome and hey the crashing is fixed in the v1.1.
Download the top one in the list and you will be fine.

Re: Last Epoch beta 0.8+ (Steam)

Posted: Mon Mar 29, 2021 12:04 pm
by Excalion89
Hey @SinGul4ritY is it possibly to edit the CT to grant more than 99 of a crafting shard? Not sure how to do it exactly and when i enable the Give shards option and sort the crafting inventory nothing applies and shard count does not change. Not sure if im missing something but thats where I'm at ( i do know it is experimental and may not work just thought id ask ) I do appreciate all the work everyone involved has done, made some interesting things happen in the game :)

If you dont feel like checking this out thats totally ok, just thought i'd ask as ive tried searching myself and may have missed something or didnt search correctly.

Re: Last Epoch beta 0.8+ (Steam)

Posted: Mon Mar 29, 2021 1:34 pm
by gideon25
Excalion89 wrote:
Mon Mar 29, 2021 12:04 pm
Hey @SinGul4ritY is it possibly to edit the CT to grant more than 99 of a crafting shard? Not sure how to do it exactly and when i enable the Give shards option and sort the crafting inventory nothing applies and shard count does not change. Not sure if im missing something but thats where I'm at ( i do know it is experimental and may not work just thought id ask ) I do appreciate all the work everyone involved has done, made some interesting things happen in the game :)

If you dont feel like checking this out thats totally ok, just thought i'd ask as ive tried searching myself and may have missed something or didnt search correctly.
Yea under the value tab double click to open script. where it says #99 change it to whatever.

Re: Last Epoch beta 0.8+ (Steam)

Posted: Mon Mar 29, 2021 1:42 pm
by Messy6666
Excalion89 wrote:
Mon Mar 29, 2021 12:04 pm
Not sure how to do it exactly and when i enable the Give shards option and sort the crafting inventory nothing applies and shard count does not change.
For the Cheat: "Unlimited Shards ( set the amount of the selected item to #99 "
You do have to click on the number before the shard ... after that it will change
Image

the "Give Shards" works ( click on the '#' in the above picture ) but won't higher the shard quantity ( imho )
Excalion89 wrote:
Mon Mar 29, 2021 12:04 pm
is it possibly to edit the CT to grant more than 99 of a crafting shard?
Yes that should be possible, ShardAffixListElement.quantity = 4 bytes so it can hold a lot of shards (theoretical).
Image

Excalion89 wrote:
Mon Mar 29, 2021 12:04 pm
If you dont feel like checking this out thats totally ok, just thought i'd ask as ive tried searching myself and may have missed something or didnt search correctly.
Hey Excalion89 all np here, i just won't do updates anymore for LE ( read debugging / tracing ).


How you edit the CT:
Double click <script> on "Cheat: Unlimited Shards ( set the amount of the selected item to #99 )"
change the second #99 into #256 or something... don't push it too high

Code: Select all

newmem:
//  mov [rdi+1c],#99
  mov [r15+1C], #99
originalcode_hookCraftingSlotManager.UpdateAffixList:
  readmem(hookCraftingSlotManager.UpdateAffixList, 6)
  jmp return
so

Code: Select all

  
newmem:
//  mov [rdi+1c],#99
  mov [r15+1C], #256
originalcode_hookCraftingSlotManager.UpdateAffixList:
just don't uncomment the first // mov [rdi+1c],#99 or the game will crash again using it

Re: Last Epoch beta 0.8+ (Steam)

Posted: Mon Mar 29, 2021 1:44 pm
by Messy6666
oh lol gideon25 answered already ^^

Re: Last Epoch beta 0.8+ (Steam)

Posted: Mon Mar 29, 2021 2:21 pm
by Excalion89
Thanks to both you and Gideon you guys are awesome :) No worries about the updates, thats why i asked how to do it myself, I am trying to learn just REALLY new to it. So i thank you both very much!

Re: Last Epoch beta 0.8+ (Steam)

Posted: Mon Mar 29, 2021 9:20 pm
by floob
I added a reveal map hack if anyone is interested.

Last Epoch_08.1e.CT
(142.51 KiB) Downloaded 84 times

Re: Last Epoch beta 0.8+ (Steam)

Posted: Tue Mar 30, 2021 4:54 pm
by Neraku34
just curious how would i go about changing the rarity drop to drop idols only?

Re: Last Epoch beta 0.8+ (Steam)

Posted: Tue Mar 30, 2021 7:58 pm
by floob
Neraku34 wrote:
Tue Mar 30, 2021 4:54 pm
just curious how would i go about changing the rarity drop to drop idols only?
I looked into this and from my hooks internally I can get all non-crafting item drops to be idols. I'll try converting to assembly and update the table with an option of idol types to choose from.

Image