How'd you find the new ones? I wanted to look into it and check through as well.Mugi151 wrote: ↑Thu Mar 13, 2025 1:00 amdoes the cheats that are in exports.cheatConfig do i need to active them via the console?mannerme wrote: ↑Thu Mar 13, 2025 12:17 amAdd these numbers to your startupCheats.Code: Select all
exports.startupCheats = [ 'w1 companion' ]; exports.cheatConfig = { w1: { companion: { companions: [0,1,2,3,4,5,6,7,8,9,10,12,13,14,15,16,17,18,19,20,21,22,23], current: "4", }, }, };
Legends of Idleon
Re: Legends of Idleon
Re: Legends of Idleon
If you have your companion cheat config added to the startupCheats section then it will load automatically when launching through the injector, no need to run any command.
Guesswork, I assumed Lava would just do +1 for all of them. Side note, companion #11 is the lava glunko dev pet players can't get.
-
- Expert Cheater
- Posts: 52
- Joined: Mon Sep 05, 2022 7:39 pm
- Reputation: 0
Re: Legends of Idleon
This bricked my injector, had to revert to get it to work again. Wouldn't this go in cheats file?mannerme wrote: ↑Thu Mar 13, 2025 12:17 amAdd these numbers to your startupCheats.Code: Select all
exports.startupCheats = [ 'w1 companion' ]; exports.cheatConfig = { w1: { companion: { companions: [0,1,2,3,4,5,6,7,8,9,10,12,13,14,15,16,17,18,19,20,21,22,23], current: "4", }, }, };
Re: Legends of Idleon
The code I posted is a copy paste of the content inside my config.custom.js file.Melanthios wrote: ↑Thu Mar 13, 2025 1:34 am
This bricked my injector, had to revert to get it to work again. Wouldn't this go in cheats file?
-
- Expert Cheater
- Posts: 52
- Joined: Mon Sep 05, 2022 7:39 pm
- Reputation: 0
Re: Legends of Idleon
Interesting, I didn't post it because I like to enable disable companions as is, but the OG w1 companion cheat doesn't seem to cover the new companions do I need to add them?mannerme wrote: ↑Thu Mar 13, 2025 1:59 amThe code I posted is a copy paste of the content inside my config.custom.js file.Melanthios wrote: ↑Thu Mar 13, 2025 1:34 am
This bricked my injector, had to revert to get it to work again. Wouldn't this go in cheats file?
-
- Expert Cheater
- Posts: 50
- Joined: Sun Jun 18, 2023 11:56 pm
- Reputation: 5
Re: Legends of Idleon
Anybody figured out how to add the new companions yet? Im sure it will be figured out pretty soon though since last companion was added fast.
-
- What is cheating?
- Posts: 2
- Joined: Sat Feb 17, 2024 11:13 am
- Reputation: 0
Re: Legends of Idleon
what to edit for more rupies ?
-
- What is cheating?
- Posts: 1
- Joined: Thu Feb 27, 2025 11:26 pm
- Reputation: 0
Re: Legends of Idleon
How do you give yourself pet coins or just unlock the pets you want permanently
-
- Cheater
- Posts: 30
- Joined: Mon Feb 17, 2025 12:15 pm
- Reputation: 1
Re: Legends of Idleon
Anyone know how i can do justice and bravery. i ignored hole so much wanna do a catch up by not dying
-
- Cheater
- Posts: 30
- Joined: Mon Feb 17, 2025 12:15 pm
- Reputation: 1
Re: Legends of Idleon
its server side so can't access green gemsPassword33 wrote: ↑Thu Mar 13, 2025 8:53 amHow do you give yourself pet coins or just unlock the pets you want permanently
-
- Cheater
- Posts: 31
- Joined: Wed Jul 06, 2022 2:06 am
- Reputation: 7
Re: Legends of Idleon
exports.startupCheats = [FrostyFlames wrote: ↑Thu Mar 13, 2025 3:40 amAnybody figured out how to add the new companions yet? Im sure it will be figured out pretty soon though since last companion was added fast.
'w1 companion'
];
exports.cheatConfig = {
w1: {
companion: {
companions: [0,1,2,3,4,5,6,7,8,9,10,12,13,14,15,16,17,18,19,20,21,22,23],
current: "4",
},
},
};
add/update that to your config.js
Re: Legends of Idleon
How do i download the injector when the link do not work
-
- Cheater
- Posts: 30
- Joined: Sun Apr 21, 2024 12:22 pm
- Reputation: 4
Re: Legends of Idleon
Try using the ChromeDebug tool
-
- What is cheating?
- Posts: 3
- Joined: Mon Feb 24, 2025 5:17 pm
- Reputation: 0
Re: Legends of Idleon
so, i managed to fix a problem i had earlier, in which i deleted 2 arrays in the Holes (namely no. 24 and 25) however, even after restoring them, and tinkering a bit with the values, i can't get any vases to spawn in cave 11, anyone who's a bit more savy then me who could help me?
Re: Legends of Idleon
I assume you forgot the comma?mmMaiamm wrote: ↑Wed Mar 12, 2025 5:00 pmwhat did you change the full code to? because if i just do ArtifactChance: t => t // 5x artifact discover bonus (lower is better) it breaks the injector launch sequence and cant injectiamapyro wrote: ↑Sun Mar 09, 2025 8:19 pmThe sailing freeze/crash when checking your loot pile was fixed by changing this line in config.js (for me at least)
Old:New:Code: Select all
ArtifactChance: t => t / 5
Code: Select all
ArtifactChance: t => t
Here's my whole w5 sailing:
Code: Select all
w5: {
sailing: {
IslandDistance: t => t / 2, // islands 50% closer
MaxChests: t => 100000, // pile holds 100000 chests
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, // 5x artifact discover bonus (lower is better)
AncientChances: t => t / 5, // 5x ancient chance (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!
},