Search found 36 matches

by iBelg
Wed Sep 14, 2022 5:03 pm
Forum: Single Player Cheat Requests
Topic: Legends of Idleon
Replies: 5524
Views: 1164915

Re: Legends of Idleon

Working on a improvement based on @Creater0822's and @iBelg's work. It is an electron app that uses the same logic to launch and intercept Z.js After that giving a nice UI to enable and disable any settings. I have it working with browser (via puppeteer) and steam (via iBelg's method). It's still a...
by iBelg
Wed May 18, 2022 4:51 pm
Forum: Single Player Cheat Requests
Topic: Legends of Idleon
Replies: 5524
Views: 1164915

Re: Legends of Idleon

by iBelg
Wed Aug 18, 2021 8:13 pm
Forum: Single Player Cheat Requests
Topic: Legends of Idleon
Replies: 5524
Views: 1164915

Re: Legends of Idleon

I only want two things at this point. 1 isn't as much of a priority as the other. Here is the list: 1. (Priority One) A way to launch and play this game offline in its current form, before Lava implements a patch and puts this game on lock-down. Hell, at this point id really just take some kind of ...
by iBelg
Fri Jul 09, 2021 1:17 pm
Forum: Single Player Cheat Requests
Topic: Legends of Idleon
Replies: 5524
Views: 1164915

Re: Legends of Idleon

Updated: https://github.com/iBelg/idleon-cheat/blob/main/cheats.js Only works with version 1.1.1: https://github.com/iBelg/idleon-cheat/releases/tag/1.1.1 Added cheats for catching and chopping. minigame catching - toggles the catching minigame cheat (the fly and hoops dont move) minigame choppin - ...
by iBelg
Fri Jul 09, 2021 8:11 am
Forum: Single Player Cheat Requests
Topic: Legends of Idleon
Replies: 5524
Views: 1164915

Re: Legends of Idleon

A JavaScript proxy is best compared to an http proxy, in that instead of directly going somewhere you instead go through the proxy first, which does some stuff. So let's say you have an object with values // Create a new object let player= { hp: 100, money: 1000} // deal damage to player player.hp =...
by iBelg
Sun Jul 04, 2021 12:03 pm
Forum: Single Player Cheat Requests
Topic: Legends of Idleon
Replies: 5524
Views: 1164915

Re: Legends of Idleon

Mining and fishing minigame cheats: https://github.com/iBelg/idleon-cheat/blob/main/cheats.js Command: - minigame (unlimited minigames) - minigame mining (you can not die in the mining minigame) - minigame fishing (you can not die in the fishing minigame) Might do the other minigames some time in t...
by iBelg
Sun Jul 04, 2021 11:00 am
Forum: Single Player Cheat Requests
Topic: Legends of Idleon
Replies: 5524
Views: 1164915

Re: Legends of Idleon

Mining and fishing minigame cheats: https://github.com/iBelg/idleon-cheat/blob/main/cheats.js Command: - minigame (unlimited minigames) - minigame mining (you can not die in the mining minigame) - minigame fishing (you can not die in the fishing minigame) Might do the other minigames some time in t...
by iBelg
Sun Jul 04, 2021 10:45 am
Forum: Single Player Cheat Requests
Topic: Legends of Idleon
Replies: 5524
Views: 1164915

Re: Legends of Idleon

Mining and fishing minigame cheats: https://github.com/iBelg/idleon-cheat/blob/main/cheats.js Command: - minigame (unlimited minigames) - minigame mining (you can not die in the mining minigame) - minigame fishing (you can not die in the fishing minigame) Might do the other minigames some time in th...
by iBelg
Sun Jul 04, 2021 7:29 am
Forum: Single Player Cheat Requests
Topic: Legends of Idleon
Replies: 5524
Views: 1164915

Re: Legends of Idleon

Small update to the tool to enable more cheats (v1.1.1) https://github.com/iBelg/idleon-cheat/releases cheats.js has also been updated to include some examples of using proxies to overwrite values. https://github.com/iBelg/idleon-cheat/blob/main/cheats.js Ouch I tried my luck on nullifying the stam...
by iBelg
Sat Jul 03, 2021 9:55 am
Forum: Single Player Cheat Requests
Topic: Legends of Idleon
Replies: 5524
Views: 1164915

Re: Legends of Idleon

Small update to the tool to enable more cheats (v1.1.1)

[Link]

cheats.js has also been updated to include some examples of using proxies to overwrite values.

[Link]
by iBelg
Fri Jul 02, 2021 10:39 pm
Forum: Single Player Cheat Requests
Topic: Legends of Idleon
Replies: 5524
Views: 1164915

Re: Legends of Idleon

registerCheat('teleports', function () { const bEngine = this['com.stencyl.Engine'].engine; const currencies = bEngine.getGameAttribute("CurrenciesOwned").h; const handler = { get: function(obj, prop) { if (prop === 'WorldTeleports') { return obj.WorldTeleports || 1; } return Reflect.get(...argumen...
by iBelg
Fri Jul 02, 2021 10:03 pm
Forum: Single Player Cheat Requests
Topic: Legends of Idleon
Replies: 5524
Views: 1164915

Re: Legends of Idleon

registerCheat('quickref', function () { const bEngine = this['com.stencyl.Engine'].engine; const optionsListAccount = bEngine.getGameAttribute('OptionsListAccount'); const handler = { get: function(obj, prop) { if (Number(prop) === 34) { return 0; } return Reflect.get(...arguments); } }; const prox...
by iBelg
Fri Jul 02, 2021 12:34 pm
Forum: Single Player Cheat Requests
Topic: Legends of Idleon
Replies: 5524
Views: 1164915

Re: Legends of Idleon

Made some small changes to how the tool works and injects the cheats.

Updated version can be found here: [Link]

Also did some refactoring to how the cheats.js works, but the old ones should still work.

[Link]
by iBelg
Tue Jun 29, 2021 12:18 pm
Forum: Single Player Cheat Requests
Topic: Legends of Idleon
Replies: 5524
Views: 1164915

Re: Legends of Idleon

salmon85 wrote:
Tue Jun 29, 2021 12:05 pm
Any chance of the source since it's an executable?

Also
[Link]

shows as clean but use at your own risk
Sure, attached the src. It uses nodejs and it builds the executable with pkg.
by iBelg
Tue Jun 29, 2021 11:29 am
Forum: Single Player Cheat Requests
Topic: Legends of Idleon
Replies: 5524
Views: 1164915

Re: Legends of Idleon

https://www18.zippyshare.com/v/qhIutYPt/file.html (password: ibelg) zip archive contains two files: InjectCheat.exe and cheats.js Both these files need to be placed where Idleon is installed (Here: https://i.imgur.com/4daUDee.png) InjectCheat.exe will inject cheats.js into Idleon and the console tha...