If you extract the whole app.asar archive into a folder called app in the same directory as app.asar, you don't need to make anything on top.
The game will load from that folder first.
If you extract the whole app.asar archive into a folder called app in the same directory as app.asar, you don't need to make anything on top.
You need to have steam client runningbombboy420 wrote: ↑Sun Apr 10, 2022 11:18 pmHey all, new to this, followed instructions according to page 37 and When I run InjectCheatsF3 it never gets past Step 1.. I have a fresh install of Node. Any assistance would be appreciated. Thanks
Tool by iBelg, forked by Creater0822
Version 1.1.1 fork 3
------------Tool Options------------
Unban: 0
Regex: \w+\.ApplicationMain\s*?=
Attached to LegendsOfIdleon.exe
Injecting cheats...
Step 1 complete...
thanks for explaining :3tibasichelp wrote: ↑Sat Apr 09, 2022 9:46 amreturn whatever number you want, whether it be 1, 69, 100, 1337, and so on.Anigma wrote: ↑Sat Apr 09, 2022 8:39 amSmaug wrote: ↑Thu Apr 07, 2022 7:27 am
Open up Z.js and search for breeding stuff, if you don't know, what exactly you are looking for.
At some point, you would stumble upon stuff likeand some lines underneath, the multiplier starting like:Code: Select all
if ("BaseBreedChance" == if ("TotalBreedChance" == if ("TotalTimeForEgg" ==
just choose the multi you have already unlocked and return the value you want.Code: Select all
if ("1stMulti" == if ("2ndMulti" == if ("3rdMulti" == if ("4thMulti" == if ("5thMulti" ==
can you explain what does "return the value you want" mean
i return it from where to where exactly?
Code: Select all
if ("GeneticsPerTrashPet" == s) return h.randomInt(2, 6)
Thank you. Already found myself, but wasn't worth to share, from my point of view, but could be of interest, for non programmers.Anigma wrote: ↑Mon Apr 11, 2022 6:11 ami found something nice while messing a big with the z file if you search this line
and edit the numbers to something like (499, 501)Code: Select all
if ("GeneticsPerTrashPet" == s) return h.randomInt(2, 6)
every-time you trash a pet you'll get 500 genes thought i would share it unless someone else already discoverd that
Code: Select all
if ("ObolRerollCostMoney" ==
if ("ObolRerollCostFrag" ==
if ("CookingUpgSpiceCostQty" ==
if ("2ndMulti" ==
if ("GeneticCost" ==
if ("PetUpgCostREAL" ==
if ("BlockChance" ==
if ("CookingLUCK" ==
You're welcome
Same problem and steam is running.hxide666 wrote: ↑Mon Apr 11, 2022 2:44 amYou need to have steam client runningbombboy420 wrote: ↑Sun Apr 10, 2022 11:18 pmHey all, new to this, followed instructions according to page 37 and When I run InjectCheatsF3 it never gets past Step 1.. I have a fresh install of Node. Any assistance would be appreciated. Thanks
Tool by iBelg, forked by Creater0822
Version 1.1.1 fork 3
------------Tool Options------------
Unban: 0
Regex: \w+\.ApplicationMain\s*?=
Attached to LegendsOfIdleon.exe
Injecting cheats...
Step 1 complete...
viewtopic.php?p=198916#p198916Fenixxx wrote: ↑Mon Apr 11, 2022 7:06 amSame problem and steam is running.hxide666 wrote: ↑Mon Apr 11, 2022 2:44 amYou need to have steam client runningbombboy420 wrote: ↑Sun Apr 10, 2022 11:18 pmHey all, new to this, followed instructions according to page 37 and When I run InjectCheatsF3 it never gets past Step 1.. I have a fresh install of Node. Any assistance would be appreciated. Thanks
Tool by iBelg, forked by Creater0822
Version 1.1.1 fork 3
------------Tool Options------------
Unban: 0
Regex: \w+\.ApplicationMain\s*?=
Attached to LegendsOfIdleon.exe
Injecting cheats...
Step 1 complete...
EDIT: nvm worked on the 7th try. just keep hammerin'
If you used this to unlock all of the pets, and you then unlocked the shiny form of the last pet for one of the rows (rat, chippy, panda), the game will think you have 1 more pet than there exists in the game, bricking the game on load, cause it tries to index an array out of bounds.jmayer2045 wrote: ↑Sat Apr 09, 2022 3:48 pmyeah i play around with breed chance, it seems brick your account after the cloudsave is triggered. anyone know how to prevent it?
the code i change is total breed chance and the return value i changed it to 100
if ("TotalBreedChance" == s)
yeah this is the problem that make my account bricked. im glad that moonfrix post a thread about how to unbrick your account.taberenjo wrote: ↑Mon Apr 11, 2022 11:06 amIf you used this to unlock all of the pets, and you then unlocked the shiny form of the last pet for one of the rows (rat, chippy, panda), the game will think you have 1 more pet than there exists in the game, bricking the game on load, cause it tries to index an array out of bounds.jmayer2045 wrote: ↑Sat Apr 09, 2022 3:48 pmyeah i play around with breed chance, it seems brick your account after the cloudsave is triggered. anyone know how to prevent it?
the code i change is total breed chance and the return value i changed it to 100
if ("TotalBreedChance" == s)
ho sorry didnt saw but thanks for sharing kinda new to this staff its pretty coolSmaug wrote: ↑Mon Apr 11, 2022 6:35 amThank you. Already found myself, but wasn't worth to share, from my point of view, but could be of interest, for non programmers.Anigma wrote: ↑Mon Apr 11, 2022 6:11 ami found something nice while messing a big with the z file if you search this line
and edit the numbers to something like (499, 501)Code: Select all
if ("GeneticsPerTrashPet" == s) return h.randomInt(2, 6)
every-time you trash a pet you'll get 500 genes thought i would share it unless someone else already discoverd that
But you can just return 500, to always get 500 and not 499 up to 501. Just remove the h.randomInt(2, 6) and replace with the amount you want.
Things you can look for which I edit myself:Code: Select all
if ("ObolRerollCostMoney" == if ("ObolRerollCostFrag" == if ("CookingUpgSpiceCostQty" == if ("2ndMulti" == if ("GeneticCost" == if ("PetUpgCostREAL" == if ("BlockChance" == if ("CookingLUCK" ==
You're welcome
What moonfrix post are you talking about as I have run into this problem.jmayer2045 wrote: ↑Mon Apr 11, 2022 12:40 pmyeah this is the problem that make my account bricked. im glad that moonfrix post a thread about how to unbrick your account.taberenjo wrote: ↑Mon Apr 11, 2022 11:06 amIf you used this to unlock all of the pets, and you then unlocked the shiny form of the last pet for one of the rows (rat, chippy, panda), the game will think you have 1 more pet than there exists in the game, bricking the game on load, cause it tries to index an array out of bounds.jmayer2045 wrote: ↑Sat Apr 09, 2022 3:48 pmyeah i play around with breed chance, it seems brick your account after the cloudsave is triggered. anyone know how to prevent it?
the code i change is total breed chance and the return value i changed it to 100
if ("TotalBreedChance" == s)
viewtopic.php?p=243336#p243336 this post.pshep4000 wrote: ↑Tue Apr 12, 2022 12:12 amWhat moonfrix post are you talking about as I have run into this problem.jmayer2045 wrote: ↑Mon Apr 11, 2022 12:40 pmyeah this is the problem that make my account bricked. im glad that moonfrix post a thread about how to unbrick your account.taberenjo wrote: ↑Mon Apr 11, 2022 11:06 am
If you used this to unlock all of the pets, and you then unlocked the shiny form of the last pet for one of the rows (rat, chippy, panda), the game will think you have 1 more pet than there exists in the game, bricking the game on load, cause it tries to index an array out of bounds.
Users browsing this forum: Firstlast2s100, kyurin, Onidurum, rcvk20, SemrushBot