Legends of Idleon

Ask about cheats/tables for single player games here
kingtom2000
What is cheating?
What is cheating?
Posts: 3
Joined: Tue Nov 14, 2023 6:14 pm
Reputation: 1

Re: Legends of Idleon

Post by kingtom2000 »

Can u guys teach me how to wipe all cards and reset GemItemsPurchased counted?

bumistro
Expert Cheater
Expert Cheater
Posts: 59
Joined: Thu Feb 23, 2023 6:01 pm
Reputation: 19

Re: Legends of Idleon

Post by bumistro »

Semetric wrote:
Fri Nov 17, 2023 1:41 am
Does anyone know the way to complete dreams?
viewtopic.php?p=319326#p319326

shesh
Novice Cheater
Novice Cheater
Posts: 24
Joined: Tue Jun 20, 2023 10:05 am
Reputation: 5

Re: Legends of Idleon

Post by shesh »

shesh wrote:
Thu Nov 16, 2023 1:28 pm
i tried multiplying my alchemy liquid rate by 4, but it changed to NaN.
how would i be able to achive that? im talking about this part from config.js:

cauldron: {
liq_rate: t => t * 4,
},

entering a random number changes the rate to that number, but i want to multiply the current liquid rate
i found it out myself. i multiplied my liquid rate by 4. in cheats.js find this:

Code: Select all

	events(189)._customBlock_CauldronStats = new Proxy(events(189)._customBlock_CauldronStats, {
		apply: function(originalFn, context, argumentsList) {
			const t = argumentsList[0];
			if ((cheatState.cauldron.bubblecost) 	&& t == "CauldronCosts") 		return 0; 		// Nullified cauldron cost
			if ((cheatState.cauldron.vialcost) 		&& t == "VialCosts")			return 0; 		// Nullified vial cost
			if ((cheatState.cauldron.lvlreq) 		&& t == "CauldronLvsBrewREQ")	return 0; 		// Nullified brew reqs
			if ((cheatState.cauldron.newbubble) 	&& t == "PctChanceNewBubble")	return 1000000; // Big enough new bubble chance
			if ((cheatState.cauldron.re_speed) 		&& t == "ResearchSpeed")		return 10000; 	// Instant research speed
			if ((cheatState.cauldron.liq_rate) 		&& t == "LiquidHRrate")			return cheatConfig.cauldron.liq_rate(t); 	// Quick liquid
			return Reflect.apply(originalFn, context, argumentsList);
		}
and replace with this:

Code: Select all

	events(189)._customBlock_CauldronStats = new Proxy(events(189)._customBlock_CauldronStats, {
		apply: function(originalFn, context, argumentsList) {
			const t = argumentsList[0];
			if ((cheatState.cauldron.bubblecost) && t == "CauldronCosts") return 0; // Nullified cauldron cost
			if ((cheatState.cauldron.vialcost) && t == "VialCosts") return 0; // Nullified vial cost
			if ((cheatState.cauldron.lvlreq) && t == "CauldronLvsBrewREQ") return 0; // Nullified brew reqs
			if ((cheatState.cauldron.newbubble) && t == "PctChanceNewBubble") return 1000000; // Big enough new bubble chance
			if ((cheatState.cauldron.re_speed) && t == "ResearchSpeed") return 10000; // Instant research speed
			
			if (t == "LiquidHRrate") {
				const originalValue = Reflect.apply(originalFn, context, argumentsList);
				return originalValue * 4; // Multiply the original value by 4
			}

			return Reflect.apply(originalFn, context, argumentsList);
		}
a more easy solution with "multiply liquidrate" would be nice in a future update, but for now this will do for me.

edit: the cheat will be always active, keep that in mind. this is as ghetto and hardcoded as it gets

austinw0012
What is cheating?
What is cheating?
Posts: 1
Joined: Fri Nov 17, 2023 4:08 pm
Reputation: 0

Re: Legends of Idleon

Post by austinw0012 »

do yall think id be shadow banned if i gave myself [Link] (the owners tame tag) lol

Semetric
Noobzor
Noobzor
Posts: 5
Joined: Tue Aug 08, 2023 1:03 am
Reputation: 0

Re: Legends of Idleon

Post by Semetric »

Has anyone fixed the Divinity Pearl Unlock? Doesn't seem to work past 50 no matter what.

adenaaass153
Noobzor
Noobzor
Posts: 9
Joined: Wed Oct 25, 2023 4:18 am
Reputation: 0

Re: Legends of Idleon

Post by adenaaass153 »

Tindal wrote:
Fri Sep 29, 2023 12:59 pm
nulledvoid wrote:
Fri Sep 29, 2023 12:28 pm
So the following is to unlock bundles correct?:

Code: Select all

chng this["com.stencyl.Engine"].engine.getGameAttribute("BundlesReceived").h["bun_p"]=1
Is there a list of bundle codes to select which bundles i want to receive and have them set to unlocked?
a Lava Supporter Pack - Trailblazer (trophy) + candy
b New Year Pack - Giftmas Tree (prem.hat)
c Starter Pack - Newbie Card Pack x3 + candy
d Easter Bundle - Big Bunny (prem.hat)
e Totally Chill Pack - Fluffy Ramsy (prem.hat)
f Summer Bundle - Beach Bro (trophy)
g Dungeon Bundle - Boosted Dungeon Runs x20
h Giftmas Bundle - Giftmas Snoozy Cap x3 (prem.hat) + 2021 Giftmas Box x250
i Auto-Loot Pack - Auto-Loot Toggle + 5 Inventory Slots & 5 Storage Chest Slots
j Outta This World Pack - Angel Wings (cape)
k Eggscellent Pack - Easter Egg Backpack (cape)
l Super Hot Fire Pack - Molten Cloak (cape)
m Gem motherlode pack - gems + 100 envelopes
n Riftwalker Pack - Riftwalker wings + Riftwalker Nametag
o Bloomin' Pet Pack - Blooming Vine + Pet Crystal x2,000
p Island Explorer Pack - Island Adventurer Nametag

q Equinox pack

Remember, that you only mark your acc, that bundle already bought and you dont get bundle items (only bundle bonuses)
Can anyone help me identify what im doing wrong?
[Link]

I tried putting the same command into chrome debug and it told me something is wrong with "this", but i cant figure it out.

Tindal
Expert Cheater
Expert Cheater
Posts: 271
Joined: Sun Nov 14, 2021 10:16 am
Reputation: 79

Re: Legends of Idleon

Post by Tindal »

adenaaass153 wrote:
Fri Nov 17, 2023 9:57 pm
Tindal wrote:
Fri Sep 29, 2023 12:59 pm
Can anyone help me identify what im doing wrong?
[Link]

I tried putting the same command into chrome debug and it told me something is wrong with "this", but i cant figure it out.
This command not for chrome, but for console
And there is error in the command at your screenshot. Be more careful

bumistro
Expert Cheater
Expert Cheater
Posts: 59
Joined: Thu Feb 23, 2023 6:01 pm
Reputation: 19

Re: Legends of Idleon

Post by bumistro »

Semetric wrote:
Fri Nov 17, 2023 4:28 pm
Has anyone fixed the Divinity Pearl Unlock? Doesn't seem to work past 50 no matter what.
disable wide candy and it should work
Tindal wrote:
Fri Nov 17, 2023 10:20 pm
adenaaass153 wrote:
Fri Nov 17, 2023 9:57 pm
Tindal wrote:
Fri Sep 29, 2023 12:59 pm
Can anyone help me identify what im doing wrong?
[Link]

I tried putting the same command into chrome debug and it told me something is wrong with "this", but i cant figure it out.
This command not for chrome, but for console
The other way around :)

Tindal
Expert Cheater
Expert Cheater
Posts: 271
Joined: Sun Nov 14, 2021 10:16 am
Reputation: 79

Re: Legends of Idleon

Post by Tindal »

bumistro wrote:
Fri Nov 17, 2023 10:29 pm
Tindal wrote:
Fri Nov 17, 2023 10:20 pm
adenaaass153 wrote:
Fri Nov 17, 2023 9:57 pm


Can anyone help me identify what im doing wrong?
[Link]

I tried putting the same command into chrome debug and it told me something is wrong with "this", but i cant figure it out.
This command not for chrome, but for console
The other way around :)
Are you sure?
Image

holyshitstoppls
Novice Cheater
Novice Cheater
Posts: 19
Joined: Wed Aug 02, 2023 9:17 am
Reputation: 4

Re: Legends of Idleon

Post by holyshitstoppls »

austinw0012 wrote:
Fri Nov 17, 2023 4:09 pm
do yall think id be shadow banned if i gave myself [Link] (the owners tame tag) lol
Giving yourself any of lava's items is a guaranteed way to get shadow banned instantly.

bumistro
Expert Cheater
Expert Cheater
Posts: 59
Joined: Thu Feb 23, 2023 6:01 pm
Reputation: 19

Re: Legends of Idleon

Post by bumistro »

Tindal wrote:
Fri Nov 17, 2023 10:37 pm
bumistro wrote:
Fri Nov 17, 2023 10:29 pm
Tindal wrote:
Fri Nov 17, 2023 10:20 pm


This command not for chrome, but for console
The other way around :)
Are you sure?
Image
I use shorter commands in the console

ScarletFeather
What is cheating?
What is cheating?
Posts: 2
Joined: Wed Nov 01, 2023 11:31 pm
Reputation: 0

Re: Legends of Idleon

Post by ScarletFeather »

Messed up chng with Breeding in [22]. Anyone know how to input it back with the F5 tool and fix the values?

shesh
Novice Cheater
Novice Cheater
Posts: 24
Joined: Tue Jun 20, 2023 10:05 am
Reputation: 5

Re: Legends of Idleon

Post by shesh »

ScarletFeather wrote:
Sat Nov 18, 2023 3:15 am
Messed up chng with Breeding in [22]. Anyone know how to input it back with the F5 tool and fix the values?
the last 3 posts on page 303 might help you, did the same thing with another value

kingtom2000
What is cheating?
What is cheating?
Posts: 3
Joined: Tue Nov 14, 2023 6:14 pm
Reputation: 1

Re: Legends of Idleon

Post by kingtom2000 »

GOJIRA wrote:
Sat Nov 18, 2023 5:41 am
dasher wrote:
Thu Nov 16, 2023 6:53 pm
I'm stuck with a blackscreen whenever i select a character to play. Anyone knows what this means? "Failed to load resource: the server responded with a status of 400 ()".
it means you have "bricked" your game!!
by either incorrectly editing files as perhaps even incorrectly installing?
personally its over my pay grade as dont even know what os your even on :/

id try a completely clean/fresh install and manually delete the previous files before hand so it don't over write/overlap anything incidentally and go from there :/
thanks but my account not "bricked" i just want to remove some item over bought. and i found the way to remove them. Sry for my bad english

User avatar
FakeRex
Expert Cheater
Expert Cheater
Posts: 63
Joined: Thu Mar 02, 2017 11:17 pm
Reputation: 30

Re: Legends of Idleon

Post by FakeRex »

This is what it says on registration page

Image

It is not that difficult thing to do

Post Reply

Who is online

Users browsing this forum: Alebastrowitch, didik56, Google Adsense [Bot], Straffi