That worked. Thanks!
Legends of Idleon
Re: Legends of Idleon
Thank you for your help.youngthugfan183 wrote: ↑Tue Jun 03, 2025 8:26 pmI've looked for you and it took me about 2 minutes to find it out, what I told you at first didn't work but after looking for 2 minutes in the array and how it is structured I found out thatbEngine.getGameAttribute("Tasks")[2][5][5]=0
sets the recipe to 0 and lets you buy it again.
But please don't treat this like a f'ing helpdesk and search for stuff yourself, its really not that hard.
I've tried searching, but I don't quite understand what I'm doing yet.
I don't have the methodology to start my search; I'm going off in all directions...
I wanted to ask if it's also possible to modify the points in the W6 Merit Shop.
I tried the daily command to reset the daily quests, but it doesn't work for W5 and W6, so I can't earn points for W6.
I also looked at the listaccount, but I didn't see any corresponding values following it.
sorry for my english .
-
- Expert Cheater
- Posts: 83
- Joined: Wed Jun 23, 2021 1:09 pm
- Reputation: 30
Re: Legends of Idleon
i dont think i have any bugged item in inventory because i can fill all with monster drop, plus its on all 9 characters (2nd-10th). its just annoying that i can't fast deposit all item to storage and vice versa. i read some people have this bug too in discord, but i dont know they are using injector or not lol. anyway thx for the advice, i will try lateryoungthugfan183 wrote: ↑Tue Jun 03, 2025 8:26 pmI've looked for you and it took me about 2 minutes to find it out, what I told you at first didn't work but after looking for 2 minutes in the array and how it is structured I found out thatbEngine.getGameAttribute("Tasks")[2][5][5]=0
sets the recipe to 0 and lets you buy it again.
But please don't treat this like a f'ing helpdesk and search for stuff yourself, its really not that hard.
Try wipe inv you probably have a bugged inventory, just remember what stuff you have and drop it to yourself.xapicool777 wrote: ↑Tue Jun 03, 2025 6:33 pmhi guys,
my 6th and 7th inventory slot is bugged but only for 2nd-10th character. i can get item from monster drop if 1-5 slot full but can't fast deposit the item from 6-7 slot and can't drag item in/out from there. is there a way to fix this?
Re: Legends of Idleon
any way to get more opals/drop more opals?
- youngthugfan183
- Expert Cheater
- Posts: 55
- Joined: Fri May 23, 2025 8:20 am
- Reputation: 22
Re: Legends of Idleon
Yes you can basically change any and all arrays of the Hole giving yourself more opals. If you are after villager levels you can change/set these yourself too. Search for posts that explain how the arrays in the Hole are structured and change these accordingly.
If you can't be bothered or don't have the knowledge I recommend buying the 60 opals in the shop with the wide mtx cheat, you will have to reset the timer since I think it only allows you to buy 4 per day. Or use the cheat that allows you to use candy anywhere and set the time to 12 or 24 hours and candy the different resources to get opals that way.
Re: Legends of Idleon
I'm looking for either big amounts of opals, or speed-up the exp of the villager(explorer in particular)youngthugfan183 wrote: ↑Wed Jun 04, 2025 12:17 pmYes you can basically change any and all arrays of the Hole giving yourself more opals. If you are after villager levels you can change/set these yourself too. Search for posts that explain how the arrays in the Hole are structured and change these accordingly..
- youngthugfan183
- Expert Cheater
- Posts: 55
- Joined: Fri May 23, 2025 8:20 am
- Reputation: 22
Re: Legends of Idleon
Then use the wide mtx and buy the opals from the shop and use the wide candy (I think) and as I set before set the time to 12 hours and up those skill caverns. Then also change the bonuses from the monuments. If you look on my profile I have made a previous comment/mini-guide on how to do this, upping all the villager exp bonuses should get you where you want to be.
Re: Legends of Idleon
youngthugfan183 wrote: ↑Wed Jun 04, 2025 12:45 pm1- Then use the wide mtx and buy the opals from the shop and use the wide candy (I think) and as I set before set the time to 12 hours and up those skill caverns.
2- Then also change the bonuses from the monuments.
3- If you look on my profile I have made a previous comment/mini-guide on how to do this, upping all the villager exp bonuses should get you where you want to be.
(i numbered the sentences so you know to which one i'm replying)
1- done that a long time ago
2- no idea how
3- what should i look for?
- youngthugfan183
- Expert Cheater
- Posts: 55
- Joined: Fri May 23, 2025 8:20 am
- Reputation: 22
Re: Legends of Idleon
Code: Select all
bEngine.gameAttributes.h.Holes[15][X]
15: (array size 60) Monuments - Bonuses levels
- [0]-[9] Bravery Bonuses
- [10]-[19] Justice Bonuses
- [20]-[29] Wisdom Bonuses
gga bEngine.gameAttributes.h.Holes[15]
which will give you the full array of all bonuses structured as stated above. Then if you are at Bravery and the villager exp is level 213 we just look in the array we just got for level 213. For example:
[12,54,123,213,546,...]
Starting from index 0 we can count that 213 is on position 3. That gives us
bEngine.gameAttributes.h.Holes[15][3]
for what we want to change.We then want to verify this is the actual position, so we dont accidently change something else, by doing
gga bEngine.gameAttributes.h.Holes[15][3]
. Which should return 213 and thus confirming we are editing the right parameter.Then use
chng bEngine.gameAttributes.h.Holes[15][3]=your_level
to change the level to what you want.
Re: Legends of Idleon
don't wanna blame you for being late(because i'm not but i became impatient), but through my attempt to get higher exp multipliers with the help of an auto-clicker i gave myself infinite gaming-exp(i needed the currency from there for upgrading the bells, and got up to gaming level 2863) and now every value(like villagers' exp amount) in the cavern is "NaNENaN" i also have -25 opalsyoungthugfan183 wrote: ↑Wed Jun 04, 2025 1:44 pmDoCode: Select all
bEngine.gameAttributes.h.Holes[15][X] 15: (array size 60) Monuments - Bonuses levels - [0]-[9] Bravery Bonuses - [10]-[19] Justice Bonuses - [20]-[29] Wisdom Bonuses
gga bEngine.gameAttributes.h.Holes[15]
which will give you the full array of all bonuses structured as stated above. Then if you are at Bravery and the villager exp is level 213 we just look in the array we just got for level 213.
For example:
[12,54,123,213,546,...]
Starting from index 0 we can count that 213 is on position 3. That gives usbEngine.gameAttributes.h.Holes[15][3]
for what we want to change.
We then want to verify this is the actual position, so we dont accidently change something else, by doinggga bEngine.gameAttributes.h.Holes[15][3]
. Which should return 213 and thus confirming we are editing the right parameter.
Then usechng bEngine.gameAttributes.h.Holes[15][3]=your_level
to change the level to what you want.
also my HP-bar is blue and has 2000hp, and my MP-bar is 0 and totally grey

this last two images applie also to ALL my characters


- youngthugfan183
- Expert Cheater
- Posts: 55
- Joined: Fri May 23, 2025 8:20 am
- Reputation: 22
Re: Legends of Idleon
"don't wanna blame you for being late" What? Being late? This is a forum not a helpdesk where everyone responds within 5 minutes.Derok wrote: ↑Wed Jun 04, 2025 2:15 pm
don't wanna blame you for being late(because i'm not but i became impatient), but through my attempt to get higher exp multipliers with the help of an auto-clicker i gave myself infinite gaming-exp(i needed the currency from there for upgrading the bells, and got up to gaming level 2863) and now every value(like villagers' exp amount) in the cavern is "NaNENaN" i also have -25 opals
also my HP-bar is blue and has 2000hp, and my MP-bar is 0 and totally grey
And for your problem, yeah pretty stupid. You changed something of which you didn't know what it did. Rule 1 don't do that. Only change stuff of which you know what it does or if you know how to fix it.
Luckily for you there are plenty of people who have bricked their gaming and hole progress so a quick use of the search function and some effort and you will be able to fix this easily.
Re: Legends of Idleon
"don't wanna blame you for being late" What? Being late? This is a forum not a helpdesk where everyone responds within 5 minutes. <- yep, joking but also "i couldn't wait your answer" kind of joke XDyoungthugfan183 wrote: ↑Wed Jun 04, 2025 3:27 pm"don't wanna blame you for being late" What? Being late? This is a forum not a helpdesk where everyone responds within 5 minutes.Derok wrote: ↑Wed Jun 04, 2025 2:15 pm
don't wanna blame you for being late(because i'm not but i became impatient), but through my attempt to get higher exp multipliers with the help of an auto-clicker i gave myself infinite gaming-exp(i needed the currency from there for upgrading the bells, and got up to gaming level 2863) and now every value(like villagers' exp amount) in the cavern is "NaNENaN" i also have -25 opals
also my HP-bar is blue and has 2000hp, and my MP-bar is 0 and totally grey
And for your problem, yeah pretty stupid. You changed something of which you didn't know what it did. Rule 1 don't do that. Only change stuff of which you know what it does or if you know how to fix it.
Luckily for you there are plenty of people who have bricked their gaming and hole progress so a quick use of the search function and some effort and you will be able to fix this easily.
I basically autoclicked the gaming-bits thingy up to infinity. Not a big deal, i can re-do everything if i want to, i would do it better and faster, and fix the names of my characters in the process with a new account even.
So a warning: DON'T LEVEL UP THE GAMING-BITS PRODUCTION OVER LEVEL10000(-ish)
Re: Legends of Idleon
how do i unlock the Armor-Set Smithy's guys without waiting a month and buying 2000 gems? Like no way to unlock it through cheats?
- youngthugfan183
- Expert Cheater
- Posts: 55
- Joined: Fri May 23, 2025 8:20 am
- Reputation: 22
Re: Legends of Idleon
I'm trying to get 100 bottle but not working? isn't it like this?
drop Island1 [100]
drop Island1 [100]
Who is online
Users browsing this forum: Bing [Bot], ryan cavalcante a, SemrushBot, Tabbou, thachck, uuraktn