Legends of Idleon

Ask about cheats/tables for single player games here
User avatar
youngthugfan183
Expert Cheater
Expert Cheater
Posts: 65
Joined: Fri May 23, 2025 8:20 am
Reputation: 26

Re: Legends of Idleon

Post by youngthugfan183 »

ilember wrote:
Tue Jun 17, 2025 11:16 am
Is there a way to force show a bundle in order to buy? I want the cool bird pet and would like to actually buy it. Or is all that server side?
It picks a random one that you haven't bought each week I believe. You can probably get it to show by setting all bundles in the game as being bought, forcing that one to come up and buy it, and then set all the bundles you previously enabled to being 'unbought'.

Gosubear
Noobzor
Noobzor
Posts: 7
Joined: Thu Jun 05, 2025 2:43 am
Reputation: 0

Re: Legends of Idleon

Post by Gosubear »

youngthugfan183 wrote:
Mon Jun 16, 2025 3:45 pm
Gosubear wrote:
Mon Jun 16, 2025 2:45 pm

I didn't buy crazy amounts of upgrades. Also, I never gave myself jade. Is there a way of fixing? I'll give command prompt a try but I've never done it before. Is there a guide? By chance.
Without knowing what you changed that made it this way it is hard to help you, you did something that made this happen. Because I have yet to hear this problem coming from someone legit.
Understood, do you maybe know where I can look up index of jade emporium? Maybe I can reference it with a new account and see where I went wrong. I never edited the config file. Just did the typical Imbedded commands like "godlike" or something.

mikemyers
What is cheating?
What is cheating?
Posts: 2
Joined: Mon Jun 16, 2025 12:28 am
Reputation: 0

Re: Legends of Idleon

Post by mikemyers »

bump

gt97
What is cheating?
What is cheating?
Posts: 2
Joined: Sat Apr 26, 2025 6:04 am
Reputation: 0

Re: Legends of Idleon

Post by gt97 »

I'd like to ask if this is normal and how can I fix it?

[Link]

User avatar
youngthugfan183
Expert Cheater
Expert Cheater
Posts: 65
Joined: Fri May 23, 2025 8:20 am
Reputation: 26

Re: Legends of Idleon

Post by youngthugfan183 »

Gosubear wrote:
Tue Jun 17, 2025 11:33 am

Understood, do you maybe know where I can look up index of jade emporium? Maybe I can reference it with a new account and see where I went wrong. I never edited the config file. Just did the typical Imbedded commands like "godlike" or something.
Everything is under "Sneaking", so you can print out that whole array and see all the values and compare them if you want. Haven't got experience in this department, only way I cheat with sneaking is dropping the item that speeds up sneaking for 2(?) hours.
gt97 wrote:
Tue Jun 17, 2025 12:27 pm
I'd like to ask if this is normal and how can I fix it?

[Link]
No this is not normal, but I think you already figured that out. Somewhere like 250-300 is normal for endgame, but don't quote me on that.

To change bubble levels go into CauldronInfo[x][y]. Where x is the cauldron, from left to right 0->3 and y is the bubble, from bottom to top 0->whatever the highest bubble is.

Gosubear
Noobzor
Noobzor
Posts: 7
Joined: Thu Jun 05, 2025 2:43 am
Reputation: 0

Re: Legends of Idleon

Post by Gosubear »

youngthugfan183 wrote:
Tue Jun 17, 2025 12:45 pm
Gosubear wrote:
Tue Jun 17, 2025 11:33 am

Understood, do you maybe know where I can look up index of jade emporium? Maybe I can reference it with a new account and see where I went wrong. I never edited the config file. Just did the typical Imbedded commands like "godlike" or something.
Everything is under "Sneaking", so you can print out that whole array and see all the values and compare them if you want. Haven't got experience in this department, only way I cheat with sneaking is dropping the item that speeds up sneaking for 2(?) hours.
How would I go about printing out the array? Sorry new to this. And I've never done anything with sneaking besides putting my chars on new floors. That's why im so confused. Granted I did do a lot of upgrades with windwalker and grimoire. Which I believe has jade gain %. But I don't see how that affects jade emporium.

Aero843
What is cheating?
What is cheating?
Posts: 1
Joined: Fri Jun 21, 2024 11:02 am
Reputation: 0

Re: Legends of Idleon

Post by Aero843 »

how to remove bundles? I set it to 0 but it still appears in my data as 0, want it completely gone if possible

User avatar
RexyTheDog
Cheater
Cheater
Posts: 26
Joined: Tue Jun 18, 2024 1:04 pm
Reputation: 29

Re: Legends of Idleon

Post by RexyTheDog »

youngthugfan183 wrote:
Fri Jun 13, 2025 1:09 pm
No but you can drop the items to yourself or do this:
bEngine.gameAttributes.h.PixelHelperActor[25].behaviors.cache.h.ActorEvents_670.script._GenINFO[228].reduce((a, v, i) => (i % 6 ? a[a.length - 1].push(v) : a.push([v]), a), []);
Image
does not seem to work

tiizoxiic
What is cheating?
What is cheating?
Posts: 3
Joined: Sun May 25, 2025 1:32 am
Reputation: 0

Re: Legends of Idleon

Post by tiizoxiic »

Anyone here knows how to delete the excess bubbles created by brew?
tried

Code: Select all

chng bEngine.getGameAttribute("CauldronInfo")[0].pop();
but doesnt seem to work. it returns undefined.

nvm got it working used

Code: Select all

bEngine.getGameAttribute("CauldronInfo")[0].pop();
in chromedebug and it worked.

User avatar
youngthugfan183
Expert Cheater
Expert Cheater
Posts: 65
Joined: Fri May 23, 2025 8:20 am
Reputation: 26

Re: Legends of Idleon

Post by youngthugfan183 »

Gosubear wrote:
Tue Jun 17, 2025 3:27 pm

How would I go about printing out the array? Sorry new to this. And I've never done anything with sneaking besides putting my chars on new floors. That's why im so confused. Granted I did do a lot of upgrades with windwalker and grimoire. Which I believe has jade gain %. But I don't see how that affects jade emporium.
It's Ninja not Sneaking thats mb.

Code: Select all

bEngine.getGameAttribute("Ninja").forEach((taskArray, i) => {
  console.log(`Task ${i}:`);
  taskArray.forEach((subArray, j) => {
    console.log(`  Sub ${j}:`, subArray);
  });
});
Something like this, this only works in chromedebug though.
RexyTheDog wrote:
Tue Jun 17, 2025 5:18 pm
Image
does not seem to work
Chromedebug... not cmd.

Post Reply

Who is online

Users browsing this forum: admantx, Afghanicus, Baidu [Spider], Mardukas79, meochan, simpleguy