Legends of Idleon

Ask about cheats/tables for single player games here
Gizzmy
Novice Cheater
Novice Cheater
Posts: 21
Joined: Thu Sep 26, 2024 5:27 pm
Reputation: 10

Re: Legends of Idleon

Post by Gizzmy »

islewantmore wrote:
Fri Oct 25, 2024 9:08 am
hey anyone know how to unshadowbanned?

Code: Select all

bEngine.gameAttributes.h.OptionsListAccount[26]=N
if N is 0 you aren't shadow banned, above that you're invincible to the others
appleloverjack123 wrote:
Fri Oct 25, 2024 9:09 am

So I’ve figured out how to buy everything in the gemshop for 0 with the injection, just wondering now if it’s safe to get all the capes that are from the gem packs and also what commands drop the capes as well as “buy” the pack.
regarding packs you can read it here:
viewtopic.php?p=329197#p329197
but the problem is its not future proof, as of now bundles consists from letter a (Lava Supporter) down to t (Timeless Pack), so bun_a, bun_b etc.
using bEngine.gameAttributes.h.BundlesReceived.h only flag your account as if you already bought the pack (1= bought, 0/no array=havent bought and game potentionally make a gem bundle pop up in your game). for example:
bun_s which is sacred method packs if the value is 1 (bEngine.gameAttributes.h.BundlesReceived.h[bun_s]=1) which trigger on daily reset to add +3 stamps etc.

while that command alone only flag your account, you have to manually 'drop' the contents from its bundle. so yeah its just better to put the bundle cheats into your cheat.js (assuming you know how to do it)

again there is no absolute ban in this game, not that lava himself doesn't care about the cheat existence, it just would be too much to handle.
the cheat.js has this line of code:
Spoiler

Code: Select all

const optionsListAccount = bEngine.getGameAttribute("OptionsListAccount");
	optionsListAccount._26 = optionsListAccount[26];
	Object.defineProperty(optionsListAccount, 26, {
		get: function () {
			if (cheatConfig.unban) return 0;
			return this._26;
		},
		set: function (value) {
			if (cheatConfig.unban) return true;
			this._26 = value;
			return true;
		},
		enumerable: true,
	});
and what it does is (as of my knowledge) as simply check when OptionsListAccount[26] value if not 0 then it will return 0. effectively making it perma unban, but again there's no absolute banning in this game, only shadow banning which make your character appear invincible to the other.
there's no safe or danger when using cheat, it's a cheat.

AND FOR THE LOVE OF GOD PLEASE
FOR ANYONE WHO ARE NEW TO THIS CHEAT
GET YOURSELF USED TO EXPLORE THE OLDER PAGE AND READ

Pavitr
What is cheating?
What is cheating?
Posts: 1
Joined: Fri Oct 25, 2024 5:42 pm
Reputation: 0

Re: Legends of Idleon

Post by Pavitr »

A noobie here, How can I use cheat engine to edit the values of inventory item? I can get the value, but when i change it , its just reverted to the original one, I am using steam version of the game. Anyway to get it working without the injector?

Okay1414
Cheater
Cheater
Posts: 32
Joined: Thu Jul 04, 2024 6:12 pm
Reputation: 6

Re: Legends of Idleon

Post by Okay1414 »

Pavitr wrote:
Fri Oct 25, 2024 5:45 pm
A noobie here, How can I use cheat engine to edit the values of inventory item? I can get the value, but when i change it , its just reverted to the original one, I am using steam version of the game. Anyway to get it working without the injector?
Not many people here use cheat engine, most use the dedicated cheat console AFAIK, so it might be a long time before you get answers. Hope you get the problem figured out tho.
islewantmore wrote:
Fri Oct 25, 2024 9:08 am
hey anyone know how to unshadowbanned?
Besides the config option, there is one method posted here viewtopic.php?p=277383#p277383
Haven't needed to test it myself, but I guess nobody has said it wouldn't work..?

appleloverjack123
Noobzor
Noobzor
Posts: 9
Joined: Fri Oct 25, 2024 8:47 am
Reputation: 0

Re: Legends of Idleon

Post by appleloverjack123 »

Gizzmy wrote:
Fri Oct 25, 2024 4:05 pm
islewantmore wrote:
Fri Oct 25, 2024 9:08 am
hey anyone know how to unshadowbanned?

Code: Select all

bEngine.gameAttributes.h.OptionsListAccount[26]=N
if N is 0 you aren't shadow banned, above that you're invincible to the others
appleloverjack123 wrote:
Fri Oct 25, 2024 9:09 am

So I’ve figured out how to buy everything in the gemshop for 0 with the injection, just wondering now if it’s safe to get all the capes that are from the gem packs and also what commands drop the capes as well as “buy” the pack.
regarding packs you can read it here:
viewtopic.php?p=329197#p329197
but the problem is its not future proof, as of now bundles consists from letter a (Lava Supporter) down to t (Timeless Pack), so bun_a, bun_b etc.
using bEngine.gameAttributes.h.BundlesReceived.h only flag your account as if you already bought the pack (1= bought, 0/no array=havent bought and game potentionally make a gem bundle pop up in your game). for example:
bun_s which is sacred method packs if the value is 1 (bEngine.gameAttributes.h.BundlesReceived.h[bun_s]=1) which trigger on daily reset to add +3 stamps etc.

while that command alone only flag your account, you have to manually 'drop' the contents from its bundle. so yeah its just better to put the bundle cheats into your cheat.js (assuming you know how to do it)

again there is no absolute ban in this game, not that lava himself doesn't care about the cheat existence, it just would be too much to handle.
the cheat.js has this line of code:
Spoiler

Code: Select all

const optionsListAccount = bEngine.getGameAttribute("OptionsListAccount");
	optionsListAccount._26 = optionsListAccount[26];
	Object.defineProperty(optionsListAccount, 26, {
		get: function () {
			if (cheatConfig.unban) return 0;
			return this._26;
		},
		set: function (value) {
			if (cheatConfig.unban) return true;
			this._26 = value;
			return true;
		},
		enumerable: true,
	});
and what it does is (as of my knowledge) as simply check when OptionsListAccount[26] value if not 0 then it will return 0. effectively making it perma unban, but again there's no absolute banning in this game, only shadow banning which make your character appear invincible to the other.
there's no safe or danger when using cheat, it's a cheat.

AND FOR THE LOVE OF GOD PLEASE
FOR ANYONE WHO ARE NEW TO THIS CHEAT
GET YOURSELF USED TO EXPLORE THE OLDER PAGE AND READ
Thank you for the help, do you happen to know if there is a way to open the summer event shop?

appleloverjack123
Noobzor
Noobzor
Posts: 9
Joined: Fri Oct 25, 2024 8:47 am
Reputation: 0

Re: Legends of Idleon

Post by appleloverjack123 »

Gizzmy wrote:
Fri Oct 11, 2024 6:38 pm
TalesofMercy wrote:
Fri Sep 27, 2024 7:47 pm
How can I turn on the summer break event bonuses (Golden Tome, Stamp Stack, Bubble Broth, and Equinox Enhancement?) in cheat engine?
[Link]
anyway after spending a couple of hours looking into the beautiful N.js code in VSCode.
i am finally able to find Latest Summer Event Break Shop! (10th August 2024 - 26th August 2024)

FOR ANYONE WHO MISS OUT SOME OR EVEN ALL EVENT STUFF
or anyone who care enough to make it into a command cheat

first make sure you have enough Event Points if you dont have any;

Code: Select all

drop Quest89 
or

Code: Select all

chng bEngine.getGameAttribute("OptionsListAccount")[310]=70
Image

i really hate media embed here smh

As you can see on my current date i can access Event Shop also in W4 Town!
all you have to do is look into chromedebug and find >MenuType2:0 change it to 67
NVM, I've located a related post

andersonSS
What is cheating?
What is cheating?
Posts: 3
Joined: Sat Jun 24, 2023 8:12 pm
Reputation: 0

Re: Legends of Idleon

Post by andersonSS »

Guys i made a poopoo and now I need urgent help (can't brick my 8k hours account ;-;)

So this happened:
[Link]
(tried to use the image tag but it didn't worked)


I'm playing on steam, i'm using the injectcheatsF5
I tried to increase the amount of bits on gaming bcz i almost got everything playing without cheats, but i needed 3 more upgrades to finish the gaming part, so i searched on the avaiable commands and I've saw the "drop Bits" command

I used drop Bits 2 and didn't changed anything that i could see, the ammount of bits was the same but i saw that i received 2 bits, so i thought that maybe i should put way more than 2 to see a difference in the numbers, since I already had a LOT of bits by playing normal, so I used the same command, but instead of "drop Bits 2" I used "drop Bits 999999999" (or close to that) and nothing changed on the bits number, but my inventory bugged, after the second tab of my inv, the items started mirroing from tab 2 to tab 3,4 and 5, i've tried to use some items that was mirroed but it wasn't actually there, it was just a visual bug, I opened the chest to put everything inside and it was actually correct, it didn't send the mirroed itens, but my inventory was full of a visual bug after that, as my inv was full of invisible itens, because all the slots had the shadown thing like it had some item in there, i don't know if i'm making myself clear :s
But after that i restarted the client with the InjectCheatsF5 to see if it would go away, but to my surprise my HUD was broken (like the image) and now I can't do anything with that character, the others are all normal and working, it's just that character in particular that's broken, I already used the inv wipe and it didn't helped, I don't know what it is, maybe i've broke some array or smth? can you guys help me plz? :(

sciomachist
Expert Cheater
Expert Cheater
Posts: 93
Joined: Sat Aug 17, 2024 2:59 pm
Reputation: 73

Re: Legends of Idleon

Post by sciomachist »

andersonSS wrote:
Mon Oct 28, 2024 4:28 am
Guys i made a poopoo and now I need urgent help (can't brick my 8k hours account ;-;)

So this happened:
[Link]
(tried to use the image tag but it didn't worked)


I'm playing on steam, i'm using the injectcheatsF5
I tried to increase the amount of bits on gaming bcz i almost got everything playing without cheats, but i needed 3 more upgrades to finish the gaming part, so i searched on the avaiable commands and I've saw the "drop Bits" command

I used drop Bits 2 and didn't changed anything that i could see, the ammount of bits was the same but i saw that i received 2 bits, so i thought that maybe i should put way more than 2 to see a difference in the numbers, since I already had a LOT of bits by playing normal, so I used the same command, but instead of "drop Bits 2" I used "drop Bits 999999999" (or close to that) and nothing changed on the bits number, but my inventory bugged, after the second tab of my inv, the items started mirroing from tab 2 to tab 3,4 and 5, i've tried to use some items that was mirroed but it wasn't actually there, it was just a visual bug, I opened the chest to put everything inside and it was actually correct, it didn't send the mirroed itens, but my inventory was full of a visual bug after that, as my inv was full of invisible itens, because all the slots had the shadown thing like it had some item in there, i don't know if i'm making myself clear :s
But after that i restarted the client with the InjectCheatsF5 to see if it would go away, but to my surprise my HUD was broken (like the image) and now I can't do anything with that character, the others are all normal and working, it's just that character in particular that's broken, I already used the inv wipe and it didn't helped, I don't know what it is, maybe i've broke some array or smth? can you guys help me plz? :(
There is a search function that will cover 99% of your needs. Whenever a char can't see UI elements, first step is to reset the char's location using the method at the bottom of this post (viewtopic.php?p=350092#p350092). I don't know if it'll also cover your inventory but it is worth a try first. I would also "reset" your bit count cause who knows what its at currently.

chng bEngine.getGameAttribute("Gaming")[0]=1

--

Just because there are pre-built coded cheats doesn't mean they are 100% reliable. Bits don't drop like standard currency - so using a generic drop function would, not surprisingly, break your character. You shouldn't ever need to manually drop yourself bits. The w5 gaming cheats includes a 100% success rate on snail so getting to 25 snail should not be an issue at all (if you need additional mail, you can use ("Gaming")[13] to set your mail count so you can reach it. You can then give yourself a nugget in the B or T range (I'd advise B since its realistic) -- use ("Gaming")[8] to set your nugget. If you can't even be bothered to do that, you can simply replace the 1 above in the bit reset to 10e52 which will give you 100Q red bits which is more than enough to buy out all the superbits.

andersonSS
What is cheating?
What is cheating?
Posts: 3
Joined: Sat Jun 24, 2023 8:12 pm
Reputation: 0

Re: Legends of Idleon

Post by andersonSS »

sciomachist wrote:
Mon Oct 28, 2024 1:21 pm
andersonSS wrote:
Mon Oct 28, 2024 4:28 am
Guys i made a poopoo and now I need urgent help (can't brick my 8k hours account ;-;)

So this happened:
[Link]
(tried to use the image tag but it didn't worked)


I'm playing on steam, i'm using the injectcheatsF5
I tried to increase the amount of bits on gaming bcz i almost got everything playing without cheats, but i needed 3 more upgrades to finish the gaming part, so i searched on the avaiable commands and I've saw the "drop Bits" command

I used drop Bits 2 and didn't changed anything that i could see, the ammount of bits was the same but i saw that i received 2 bits, so i thought that maybe i should put way more than 2 to see a difference in the numbers, since I already had a LOT of bits by playing normal, so I used the same command, but instead of "drop Bits 2" I used "drop Bits 999999999" (or close to that) and nothing changed on the bits number, but my inventory bugged, after the second tab of my inv, the items started mirroing from tab 2 to tab 3,4 and 5, i've tried to use some items that was mirroed but it wasn't actually there, it was just a visual bug, I opened the chest to put everything inside and it was actually correct, it didn't send the mirroed itens, but my inventory was full of a visual bug after that, as my inv was full of invisible itens, because all the slots had the shadown thing like it had some item in there, i don't know if i'm making myself clear :s
But after that i restarted the client with the InjectCheatsF5 to see if it would go away, but to my surprise my HUD was broken (like the image) and now I can't do anything with that character, the others are all normal and working, it's just that character in particular that's broken, I already used the inv wipe and it didn't helped, I don't know what it is, maybe i've broke some array or smth? can you guys help me plz? :(
There is a search function that will cover 99% of your needs. Whenever a char can't see UI elements, first step is to reset the char's location using the method at the bottom of this post (viewtopic.php?p=350092#p350092). I don't know if it'll also cover your inventory but it is worth a try first. I would also "reset" your bit count cause who knows what its at currently.

chng bEngine.getGameAttribute("Gaming")[0]=1

--

Just because there are pre-built coded cheats doesn't mean they are 100% reliable. Bits don't drop like standard currency - so using a generic drop function would, not surprisingly, break your character. You shouldn't ever need to manually drop yourself bits. The w5 gaming cheats includes a 100% success rate on snail so getting to 25 snail should not be an issue at all (if you need additional mail, you can use ("Gaming")[13] to set your mail count so you can reach it. You can then give yourself a nugget in the B or T range (I'd advise B since its realistic) -- use ("Gaming")[8] to set your nugget. If you can't even be bothered to do that, you can simply replace the 1 above in the bit reset to 10e52 which will give you 100Q red bits which is more than enough to buy out all the superbits.

Hey thx for the reply, I've tried everything you told but still bricked, but I noticed that my inventory still have bits, I went to the var of my inv and was like this:
[Link]

Even after using "wipe inv" again the bits doesn't go away, do you know how to solve this?

MrRedShark77
What is cheating?
What is cheating?
Posts: 1
Joined: Mon Oct 28, 2024 2:53 pm
Reputation: 0

Re: Legends of Idleon

Post by MrRedShark77 »

Hello, I downloaded cheat by valleymon and extracted files into game folder (steam), but then I keep crashing after 1–2 seconds since loading is done when I clicked cheat application...

I need help... (so I'm good to know about JavaScript + I have installed Node.js)

UPD: I realized some w3* (prayer, freeworship, etc.) in config.custom.js give error... Then I removed them, so it works fine!
UPD 2: Nevermind...

keiran2k
Noobzor
Noobzor
Posts: 6
Joined: Mon Oct 21, 2024 2:31 pm
Reputation: 0

Re: Legends of Idleon

Post by keiran2k »

I've had a little problem for a while now ([Link])
The codex is super bugged, my attack bar won't actually open and if I try to switch from this player to another, the game crashes.
If I could get some help with this, it would be much appreciated, and I apologise if this or something similar has been answered already I don't really have much time to go through like 400 pages to find a solution. :I

dzen
Noobzor
Noobzor
Posts: 7
Joined: Wed Jul 13, 2022 3:22 pm
Reputation: 0

Re: Legends of Idleon

Post by dzen »

hey, is there a way to get rid of extra money except for dumping it on stamp(s) until its depleted? my knowledge was enough to find the value in chromedebug but changing it doesn't seem to work:

EDIT: bEngine.gameAttributes.h => MoneyBANK => change to desired value ( 69e+28 in my case )

would appreciate if anyone found a way to reset Talent Point shelf purchase in Alchemy=>Liquid too, thanks!!!

Tindal
Expert Cheater
Expert Cheater
Posts: 315
Joined: Sun Nov 14, 2021 10:16 am
Reputation: 105

Re: Legends of Idleon

Post by Tindal »

dzen wrote:
Wed Oct 30, 2024 11:19 am
would appreciate if anyone found a way to reset Talent Point shelf purchase in Alchemy=>Liquid too, thanks!!!
chng bEngine.getGameAttribute("CauldronInfo")[10][8]=0
chng bEngine.getGameAttribute("CauldronInfo")[10][17]=0

dzen
Noobzor
Noobzor
Posts: 7
Joined: Wed Jul 13, 2022 3:22 pm
Reputation: 0

Re: Legends of Idleon

Post by dzen »

Tindal wrote:
Wed Oct 30, 2024 12:25 pm
dzen wrote:
Wed Oct 30, 2024 11:19 am
would appreciate if anyone found a way to reset Talent Point shelf purchase in Alchemy=>Liquid too, thanks!!!
chng bEngine.getGameAttribute("CauldronInfo")[10][8]=0
chng bEngine.getGameAttribute("CauldronInfo")[10][17]=0
worked flawlessly! thanks! If by any chance you know how to normalize Sprout Capacity in Gaming so I can finally completely unbrick my account I'd be eternally grateful!!!

After meddling with injector its at 24 and

chng bEngine.getGameAttribute("Gaming")[3]=X

doesnt seem to do the trick :(
Last edited by dzen on Wed Oct 30, 2024 12:49 pm, edited 1 time in total.

Tindal
Expert Cheater
Expert Cheater
Posts: 315
Joined: Sun Nov 14, 2021 10:16 am
Reputation: 105

Re: Legends of Idleon

Post by Tindal »

dzen wrote:
Wed Oct 30, 2024 12:35 pm
Tindal wrote:
Wed Oct 30, 2024 12:25 pm
dzen wrote:
Wed Oct 30, 2024 11:19 am
would appreciate if anyone found a way to reset Talent Point shelf purchase in Alchemy=>Liquid too, thanks!!!
chng bEngine.getGameAttribute("CauldronInfo")[10][8]=0
chng bEngine.getGameAttribute("CauldronInfo")[10][17]=0
worked flawlessly! thanks! If by any chance you know how to normalize Sprout Capacity in Gaming so I can finally completely unbrick my account I'd be eternally grateful!!!
Easy!
chng bEngine.getGameAttribute("Gaming")[3]=11

Make screenshot of your Gaming
And try to change location... and collect all sprouts
Last edited by Tindal on Wed Oct 30, 2024 12:55 pm, edited 3 times in total.

dzen
Noobzor
Noobzor
Posts: 7
Joined: Wed Jul 13, 2022 3:22 pm
Reputation: 0

Re: Legends of Idleon

Post by dzen »

Tindal wrote:
Wed Oct 30, 2024 12:47 pm
dzen wrote:
Wed Oct 30, 2024 12:35 pm
Tindal wrote:
Wed Oct 30, 2024 12:25 pm


chng bEngine.getGameAttribute("CauldronInfo")[10][8]=0
chng bEngine.getGameAttribute("CauldronInfo")[10][17]=0
worked flawlessly! thanks! If by any chance you know how to normalize Sprout Capacity in Gaming so I can finally completely unbrick my account I'd be eternally grateful!!!
Easy!
chng bEngine.getGameAttribute("Gaming")[3]=11
sry, edited when u responded, it only reverts the level itself while keeping the capacity and tooltips at 24



p.s. changing locations/worlds didnt help
p.p.s harvested it all before/after, they just grow up again xD

Post Reply