idk how to upload images here in this forum, so I put it imgur link :
Legends of Idleon
Re: Legends of Idleon
can anyone help me, I just set whichever summoning essence that has not max level to 100, then playing some endless summoning, somehow break everything and Idk what went wrong
idk how to upload images here in this forum, so I put it imgur link :
any help would be appreciated thanks
idk how to upload images here in this forum, so I put it imgur link :
[Link]
Re: Legends of Idleon
Sorry for the confusion. It was ArtifactBonus thats why I put (?) cause I couldn’t remember the nameTheLonelyGhost wrote: ↑Sun Mar 30, 2025 6:13 pmSo changing ninja PristineBon to t=>t actually lowered my max level from 189 to 188 for some reason. Would be fine if it was going back to normal. But I went to Eldrich with Fury and it still stayed 188.amad2493 wrote: ↑Sun Mar 30, 2025 2:15 pmEdit your config.custom.jsTheLonelyGhost wrote: ↑Sun Mar 30, 2025 2:12 pmAlso side note, something else i just noticed.... Im not getting any more levels towards my Max Talent Book number. Just got ancient Fury statue and still at 189 instead of +25 to that. Would this be a result of some cheat perhaps?
Pristine bonus on Ninja to t => t
Relic(?) bonus on Sailing to t => t
Edit: Pristine bonus broke my “Max Library Level” bonus on summoning that’s why I mentioned it.
As for Relic bonus on sailing.... I don't have any of that in my config.custom LOL. So definitely can't be that. I have a lot of the max modifiers, so in reality I should be at max of 260/299 right now, but I'm at 188 for some reason.
-
- Noobzor
- Posts: 8
- Joined: Mon Feb 10, 2025 4:50 pm
- Reputation: 0
Re: Legends of Idleon
No you're fine. I still don't have any sailing cheatConfigs modified like gaming, farming, ninja, summoning etc. So it doesn't matter still lol. Still trying to figure out what is lowering my max Talent Book level.amad2493 wrote: ↑Sun Mar 30, 2025 9:35 pmSorry for the confusion. It was ArtifactBonus thats why I put (?) cause I couldn’t remember the nameTheLonelyGhost wrote: ↑Sun Mar 30, 2025 6:13 pmSo changing ninja PristineBon to t=>t actually lowered my max level from 189 to 188 for some reason. Would be fine if it was going back to normal. But I went to Eldrich with Fury and it still stayed 188.
As for Relic bonus on sailing.... I don't have any of that in my config.custom LOL. So definitely can't be that. I have a lot of the max modifiers, so in reality I should be at max of 260/299 right now, but I'm at 188 for some reason.
Re: Legends of Idleon
No you dont get it. You should copy the whole code block of sailing from config.js to your config.custom.js. Since the custom.example.js you got from the latest files don’t come with sailing code block. It doesn’t matter if sailing code isn’t in your custom.js because when you run “w5 sailing” it will use the code/config from config.js with default values so to fix your problem you have to set your “custom” valuesTheLonelyGhost wrote: ↑Sun Mar 30, 2025 11:24 pmNo you're fine. I still don't have any sailing cheatConfigs modified like gaming, farming, ninja, summoning etc. So it doesn't matter still lol. Still trying to figure out what is lowering my max Talent Book level.amad2493 wrote: ↑Sun Mar 30, 2025 9:35 pmSorry for the confusion. It was ArtifactBonus thats why I put (?) cause I couldn’t remember the nameTheLonelyGhost wrote: ↑Sun Mar 30, 2025 6:13 pm
So changing ninja PristineBon to t=>t actually lowered my max level from 189 to 188 for some reason. Would be fine if it was going back to normal. But I went to Eldrich with Fury and it still stayed 188.
As for Relic bonus on sailing.... I don't have any of that in my config.custom LOL. So definitely can't be that. I have a lot of the max modifiers, so in reality I should be at max of 260/299 right now, but I'm at 188 for some reason.
Spoiler
Code: Select all
w5: {
sailing: {
IslandDistance: (t) => t / 2, // islands 50% closer
MaxChests: (t) => t, // ! Caution if the pile is too high the game wont save to the cloud anymore !
RareTreasureChance: (t) => t * 5, // 5x chance for rare treasure
Minimumtraveltime: (t) => t / 5, // minimum travel time reduced from 2h to 30m ( t => 10 would be 10 minues )
BoatUpgCostType: (t) => t, // loot type for upgrade
BoatUpgCostQty: (t) => t, // loot amount for upgrade, t => 0 for free upgrades
BoatValue: (t) => t * 2, // 2x boat loot
BoatSpeed: (t) => t * 2, // 2x boat speed
CloudDiscoverBonus: (t) => t * 2, // 2x cloud discover bonus
ArtifactChance: (t) => t, // ! Caution changing this causes crashes. ! artifact discover bonus (lower is better)
AncientChances: (t) => t / 5, // 5x ancient chance (lower is better)
EldritchChances: (t) => t, // eldritch chance (is lower is better?)
SovereignChances: (t) => t, // sovereign chance (is lower is better?)
NewCaptBoatSlot: (t) => 0, // free boat and captain slots
BuyCaptainCost: (t) => 0, // free captains
ArtifactBonus: (t) => 3, // bonus from the artifact, needs investigation as to what can be done here!
},
The function of config.custom.js is to run cheats like “w5 sailing” “w5 gaming” with custom values instead of using default value from config.js.
You could also set the value in config.js if you don’t want to copy the code to your custom.js. Then the new custom/edited value will be the new default value.
-
- Noobzor
- Posts: 8
- Joined: Mon Feb 10, 2025 4:50 pm
- Reputation: 0
Re: Legends of Idleon
Oh I didn't actually know they had the building blocks else where lol. I did set t => t via command as well after you mentioning before just in case, but it didn't seem like that did anything either. Maybe adding this block to my config will do it on reloadamad2493 wrote: ↑Mon Mar 31, 2025 12:32 amNo you dont get it. You should copy the whole code block of sailing from config.js to your config.custom.js. Since the custom.example.js you got from the latest files don’t come with sailing code block. It doesn’t matter if sailing code isn’t in your custom.js because when you run “w5 sailing” it will use the code/config from config.js with default values so to fix your problem you have to set your “custom” valuesTheLonelyGhost wrote: ↑Sun Mar 30, 2025 11:24 pmNo you're fine. I still don't have any sailing cheatConfigs modified like gaming, farming, ninja, summoning etc. So it doesn't matter still lol. Still trying to figure out what is lowering my max Talent Book level.
You have to set ArtifactBonus t => tSpoiler
Code: Select all
w5: { sailing: { IslandDistance: (t) => t / 2, // islands 50% closer MaxChests: (t) => t, // ! Caution if the pile is too high the game wont save to the cloud anymore ! RareTreasureChance: (t) => t * 5, // 5x chance for rare treasure Minimumtraveltime: (t) => t / 5, // minimum travel time reduced from 2h to 30m ( t => 10 would be 10 minues ) BoatUpgCostType: (t) => t, // loot type for upgrade BoatUpgCostQty: (t) => t, // loot amount for upgrade, t => 0 for free upgrades BoatValue: (t) => t * 2, // 2x boat loot BoatSpeed: (t) => t * 2, // 2x boat speed CloudDiscoverBonus: (t) => t * 2, // 2x cloud discover bonus ArtifactChance: (t) => t, // ! Caution changing this causes crashes. ! artifact discover bonus (lower is better) AncientChances: (t) => t / 5, // 5x ancient chance (lower is better) EldritchChances: (t) => t, // eldritch chance (is lower is better?) SovereignChances: (t) => t, // sovereign chance (is lower is better?) NewCaptBoatSlot: (t) => 0, // free boat and captain slots BuyCaptainCost: (t) => 0, // free captains ArtifactBonus: (t) => 3, // bonus from the artifact, needs investigation as to what can be done here! },
The function of config.custom.js is to run cheats like “w5 sailing” “w5 gaming” with custom values instead of using default value from config.js.
You could also set the value in config.js if you don’t want to copy the code to your custom.js. Then the new custom/edited value will be the new default value.
UPD: Well would you look at that. Having that custom block compared to doing it via code fixed it. Thanks for your expertise in this man!
Re: Legends of Idleon
Hello,
How can i open the config.custom file to edit the code and add the other companions for exemple?
Ty in advance
How can i open the config.custom file to edit the code and add the other companions for exemple?
Ty in advance

Re: Legends of Idleon
Any chance on a new upload for the injector of 1.2.1? Nevermind was able to get it.
-
- Noobzor
- Posts: 5
- Joined: Mon Jun 19, 2023 8:47 pm
- Reputation: 0
-
- Noobzor
- Posts: 8
- Joined: Mon Feb 10, 2025 4:50 pm
- Reputation: 0
Re: Legends of Idleon
Anyway to decrease the amount of Brewing tiers you have? Looks like I accidently ran into toooo many levels of new bubbles and I have rows that Im not supposed to have as it had 0% change to get a new bubble, but I had it on 100% to get one..... So I just have a tier level that I can't click up into since there's nothing there LOL
Re: Legends of Idleon
Guys hello. can u tell me, is there any way i can get one specific collectible stone in Jar? I just want get only 1 stone for Studies exp
Re: Legends of Idleon
Spoiler
Hey, can anyone help me with getting those packs: Ancient Echoes Pack, Deathbringer Pack and Fallen Spirits Pet Pack? They are not included in buy commands.
Re: Legends of Idleon
Notepad++ is my recommendation if you don't like vs code
Re: Legends of Idleon
That's normal these days. You can unlock up to w9 bubbles / 3rd row above current highest row. And 0% doesn't actually mean flat 0 it could be 0.0000001%. You don't have to worryTheLonelyGhost wrote: ↑Tue Apr 01, 2025 1:01 amAnyway to decrease the amount of Brewing tiers you have? Looks like I accidently ran into toooo many levels of new bubbles and I have rows that Im not supposed to have as it had 0% change to get a new bubble, but I had it on 100% to get one..... So I just have a tier level that I can't click up into since there's nothing there LOL

Re: Legends of Idleon
i pasted that command as a whole but didnt receive the chest idk how to confirm other bonusessciomachist wrote: ↑Thu Dec 05, 2024 11:37 pmchng bEngine.getGameAttribute("OptionsListAccount")[311]="0abc_defg"
"0abc_" are from the summer event - i don't know the exact lineup for which letter corresponds to which bonus
"defg" are for the current Giftmas event
d-Supreme Wiring
e-Sleepy Joe Armstrong
f-Village Encouragement
g-Gilded Vote Button
do i have to use it with one character at a time? like once with 0 then agiain with a then b...
edit:this was dumb af question
Last edited by Shaman123 on Tue Apr 01, 2025 10:00 pm, edited 1 time in total.
Who is online
Users browsing this forum: eahernantst83, Google Adsense [Bot], NovaZero23