Legends of Idleon

Ask about cheats/tables for single player games here
AnonCod
Noobzor
Noobzor
Posts: 6
Joined: Fri Aug 28, 2020 10:47 am
Reputation: 0

Re: Legends of Idleon

Post by AnonCod »

I tried to look around the z.js file and could not find the code to remove the 100 spice claim daily limit, maybe going to 500 1000 or higher. Does anyone know the right code snippet, and what needs to be changed?

DQB
What is cheating?
What is cheating?
Posts: 4
Joined: Fri Mar 18, 2022 11:20 pm
Reputation: 0

Re: Legends of Idleon

Post by DQB »

So for those who are using Cheat Engine, you can still change levels fine, but it seems that items have had their values changed. (or I am just doing it wrong somehow)

hxide666
Expert Cheater
Expert Cheater
Posts: 89
Joined: Sun Dec 19, 2021 3:31 am
Reputation: 2

Re: Legends of Idleon

Post by hxide666 »

DQB wrote:
Thu Apr 28, 2022 7:45 pm
So for those who are using Cheat Engine, you can still change levels fine, but it seems that items have had their values changed. (or I am just doing it wrong somehow)
Why would you even use CE, when there's a working cheat injector. Much safer

hxide666
Expert Cheater
Expert Cheater
Posts: 89
Joined: Sun Dec 19, 2021 3:31 am
Reputation: 2

Re: Legends of Idleon

Post by hxide666 »

FFD wrote:
Thu Apr 28, 2022 3:19 pm
Since InjectCheatF3 hasnt got an uppdate in a while is it still safe to use or is it better to try and learn the z.js edit thing?
What im looking for is basiclly, give my self 20-30 lvls, and bump all skills to like lvl 40-50, lower the cost for alch bubbles and a catchup for the postoffice. Mby get some levls on stamps and prepare for when a QOL (if anyone find one) for the lab is found.
You can get the angel wings and edit it's "all afk gain," there's also the "nullify" command for stamp and alch cost.

Smaug
Cheater
Cheater
Posts: 34
Joined: Fri Mar 25, 2022 12:04 am
Reputation: 10

Re: Legends of Idleon

Post by Smaug »

FFD wrote:
Thu Apr 28, 2022 3:19 pm
Since InjectCheatF3 hasnt got an uppdate in a while is it still safe to use or is it better to try and learn the z.js edit thing?
The safe commands still seem to be safe.
But W4 stuff isn't included, because of the lack of an update.
So if you want W4 specific stuff, besides items/drops, you need to modify Z.js

User avatar
tibasichelp
Expert Cheater
Expert Cheater
Posts: 140
Joined: Mon Oct 18, 2021 3:18 am
Reputation: 44

Re: Legends of Idleon

Post by tibasichelp »

AnonCod wrote:
Thu Apr 28, 2022 4:10 pm
I tried to look around the z.js file and could not find the code to remove the 100 spice claim daily limit, maybe going to 500 1000 or higher. Does anyone know the right code snippet, and what needs to be changed?
Read this:
viewtopic.php?p=208295#p208295

Plus the new star talent auto collects all spices after 1 hour of afk even if you have 0 points in it.

simcowqueen
Noobzor
Noobzor
Posts: 5
Joined: Tue Apr 12, 2022 12:40 am
Reputation: 0

Re: Legends of Idleon

Post by simcowqueen »

tibasichelp wrote:
Sat Apr 23, 2022 1:37 am
Timaeria wrote:
Fri Apr 22, 2022 1:38 pm
I believe the latest update truly broke the InjectCheat. 20+ attempts and it won't go past step 1. Is it working for anyone else?
Still working. Try verify integrity of game files in Steam and then inject.
I've been trying about 100+ times over 2 hours. I've verified integrity of files about 10 times. I had it working yesterday but computer restarted. Any other tips to try out? It appears my Step 1 loads the game too fast. I noticed when it performed the remaining steps it took about 5 seconds to start step 2.

Also Pressing CTRL + R will complete all steps, but zero codes work. Everything is undefined so not sure if theres something I could do from there or not.

User avatar
tibasichelp
Expert Cheater
Expert Cheater
Posts: 140
Joined: Mon Oct 18, 2021 3:18 am
Reputation: 44

Re: Legends of Idleon

Post by tibasichelp »

simcowqueen wrote:
Fri Apr 29, 2022 1:58 pm
tibasichelp wrote:
Sat Apr 23, 2022 1:37 am
Timaeria wrote:
Fri Apr 22, 2022 1:38 pm
I believe the latest update truly broke the InjectCheat. 20+ attempts and it won't go past step 1. Is it working for anyone else?
Still working. Try verify integrity of game files in Steam and then inject.
I've been trying about 100+ times over 2 hours. I've verified integrity of files about 10 times. I had it working yesterday but computer restarted. Any other tips to try out? It appears my Step 1 loads the game too fast. I noticed when it performed the remaining steps it took about 5 seconds to start step 2.

Also Pressing CTRL + R will complete all steps, but zero codes work. Everything is undefined so not sure if theres something I could do from there or not.
Try deleting the app.asar from your Steam directory and then click verify file integrity (It'll obtain a new one from the servers). It's working every single time for me.

And also do what it is written in this post: viewtopic.php?p=242798#p242798
It'll fix Step 1 loading game too fast.

Code: Select all

  console.log('Step 1 complete...');

  await Network.setRequestInterception(
    {
      patterns: [
        {
          urlPattern: '*Z.js',
          resourceType: 'Script',
          interceptionStage: 'HeadersReceived',
        }
      ]
    }
  );
  await Runtime.enable();
  await Runtime.evaluate({ expression: cheatsScript });
  Network.requestIntercepted(async ({ interceptionId, request }) => {
Once you have made the edits in main.js, compile it and build.

Code: Select all

# Compile instructions
Your first time installation of NodeJS:
1) Install NodeJS: 
Got mine through Chocolatey, which is currently version 16.5.0
2) npm install -g pkg
The package which lets you build executables

The building procedure:
0) Have the source file in a new folder and open Powershell there
1) npm init -y
Generates a package.json file
2) npm install -S child_process chrome-remote-interface atob btoa prompt
These are all the packages that iBelg's tool uses
3) Edit the json file, e.g. give it a name, version, don't forget to keep ibelg's name in the author section.
4) Inside "Scripts": {} add:
"build": "pkg main.js --targets node16-win-x64 --compress Brotli --output InjectCheatsF3"
Or node14-win-x65 if you're using NodeJS 14.
5) Execute: npm run build

FFD
Novice Cheater
Novice Cheater
Posts: 16
Joined: Wed Apr 27, 2022 6:13 pm
Reputation: 2

Re: Legends of Idleon

Post by FFD »

Im useinge Injectcheat, and tried the shrinehr thing. I missread it as 0.5 (30 min). My highest shrine is lvl 236. Any way to lower the level?

Edit: lvl shrine (random number) did the trick.

simcowqueen
Noobzor
Noobzor
Posts: 5
Joined: Tue Apr 12, 2022 12:40 am
Reputation: 0

Re: Legends of Idleon

Post by simcowqueen »

tibasichelp wrote:
Fri Apr 29, 2022 3:09 pm
simcowqueen wrote:
Fri Apr 29, 2022 1:58 pm
tibasichelp wrote:
Sat Apr 23, 2022 1:37 am


Still working. Try verify integrity of game files in Steam and then inject.
I've been trying about 100+ times over 2 hours. I've verified integrity of files about 10 times. I had it working yesterday but computer restarted. Any other tips to try out? It appears my Step 1 loads the game too fast. I noticed when it performed the remaining steps it took about 5 seconds to start step 2.

Also Pressing CTRL + R will complete all steps, but zero codes work. Everything is undefined so not sure if theres something I could do from there or not.
Try deleting the app.asar from your Steam directory and then click verify file integrity (It'll obtain a new one from the servers). It's working every single time for me.

And also do what it is written in this post: viewtopic.php?p=242798#p242798
It'll fix Step 1 loading game too fast.

Code: Select all

  console.log('Step 1 complete...');

  await Network.setRequestInterception(
    {
      patterns: [
        {
          urlPattern: '*Z.js',
          resourceType: 'Script',
          interceptionStage: 'HeadersReceived',
        }
      ]
    }
  );
  await Runtime.enable();
  await Runtime.evaluate({ expression: cheatsScript });
  Network.requestIntercepted(async ({ interceptionId, request }) => {
Once you have made the edits in main.js, compile it and build.

Code: Select all

# Compile instructions
Your first time installation of NodeJS:
1) Install NodeJS: 
Got mine through Chocolatey, which is currently version 16.5.0
2) npm install -g pkg
The package which lets you build executables

The building procedure:
0) Have the source file in a new folder and open Powershell there
1) npm init -y
Generates a package.json file
2) npm install -S child_process chrome-remote-interface atob btoa prompt
These are all the packages that iBelg's tool uses
3) Edit the json file, e.g. give it a name, version, don't forget to keep ibelg's name in the author section.
4) Inside "Scripts": {} add:
"build": "pkg main.js --targets node16-win-x64 --compress Brotli --output InjectCheatsF3"
Or node14-win-x65 if you're using NodeJS 14.
5) Execute: npm run build
I followed your instructions (as best I could, I'm a computer idiot). No luck. I decided to completely delete everything in case I did a typo somewhere or screwed it up. Dunno if Ibelg updated or I had an older version. I believe I had 1.1.1 and now its 1.1.2.

Now I don't know the commands (nullify isn't working, but drop item still is) so gonna try to figure out commands again (: But hey at least I can get my time candies which if I can drop enough thats all I'll need for the awful awful grinds ahead. Thank you!

ScarletKobold
Novice Cheater
Novice Cheater
Posts: 21
Joined: Sun Feb 13, 2022 2:30 am
Reputation: 2

Re: Legends of Idleon

Post by ScarletKobold »

simcowqueen wrote:
Sat Apr 30, 2022 12:36 am
tibasichelp wrote:
Fri Apr 29, 2022 3:09 pm
simcowqueen wrote:
Fri Apr 29, 2022 1:58 pm


I've been trying about 100+ times over 2 hours. I've verified integrity of files about 10 times. I had it working yesterday but computer restarted. Any other tips to try out? It appears my Step 1 loads the game too fast. I noticed when it performed the remaining steps it took about 5 seconds to start step 2.

Also Pressing CTRL + R will complete all steps, but zero codes work. Everything is undefined so not sure if theres something I could do from there or not.
Try deleting the app.asar from your Steam directory and then click verify file integrity (It'll obtain a new one from the servers). It's working every single time for me.

And also do what it is written in this post: viewtopic.php?p=242798#p242798
It'll fix Step 1 loading game too fast.

Code: Select all

  console.log('Step 1 complete...');

  await Network.setRequestInterception(
    {
      patterns: [
        {
          urlPattern: '*Z.js',
          resourceType: 'Script',
          interceptionStage: 'HeadersReceived',
        }
      ]
    }
  );
  await Runtime.enable();
  await Runtime.evaluate({ expression: cheatsScript });
  Network.requestIntercepted(async ({ interceptionId, request }) => {
Once you have made the edits in main.js, compile it and build.

Code: Select all

# Compile instructions
Your first time installation of NodeJS:
1) Install NodeJS: 
Got mine through Chocolatey, which is currently version 16.5.0
2) npm install -g pkg
The package which lets you build executables

The building procedure:
0) Have the source file in a new folder and open Powershell there
1) npm init -y
Generates a package.json file
2) npm install -S child_process chrome-remote-interface atob btoa prompt
These are all the packages that iBelg's tool uses
3) Edit the json file, e.g. give it a name, version, don't forget to keep ibelg's name in the author section.
4) Inside "Scripts": {} add:
"build": "pkg main.js --targets node16-win-x64 --compress Brotli --output InjectCheatsF3"
Or node14-win-x65 if you're using NodeJS 14.
5) Execute: npm run build
I followed your instructions (as best I could, I'm a computer idiot). No luck. I decided to completely delete everything in case I did a typo somewhere or screwed it up. Dunno if Ibelg updated or I had an older version. I believe I had 1.1.1 and now its 1.1.2.

Now I don't know the commands (nullify isn't working, but drop item still is) so gonna try to figure out commands again (: But hey at least I can get my time candies which if I can drop enough thats all I'll need for the awful awful grinds ahead. Thank you!
it's 1.1.1 fork 3. If you dont have the cheat list with 1000+ lines of code or something like that, you got the wrong version.

simcowqueen
Noobzor
Noobzor
Posts: 5
Joined: Tue Apr 12, 2022 12:40 am
Reputation: 0

Re: Legends of Idleon

Post by simcowqueen »

ScarletKobold wrote:
Sat Apr 30, 2022 5:51 am
simcowqueen wrote:
Sat Apr 30, 2022 12:36 am
tibasichelp wrote:
Fri Apr 29, 2022 3:09 pm


Try deleting the app.asar from your Steam directory and then click verify file integrity (It'll obtain a new one from the servers). It's working every single time for me.

And also do what it is written in this post: viewtopic.php?p=242798#p242798
It'll fix Step 1 loading game too fast.

Code: Select all

  console.log('Step 1 complete...');

  await Network.setRequestInterception(
    {
      patterns: [
        {
          urlPattern: '*Z.js',
          resourceType: 'Script',
          interceptionStage: 'HeadersReceived',
        }
      ]
    }
  );
  await Runtime.enable();
  await Runtime.evaluate({ expression: cheatsScript });
  Network.requestIntercepted(async ({ interceptionId, request }) => {
Once you have made the edits in main.js, compile it and build.

Code: Select all

# Compile instructions
Your first time installation of NodeJS:
1) Install NodeJS: 
Got mine through Chocolatey, which is currently version 16.5.0
2) npm install -g pkg
The package which lets you build executables

The building procedure:
0) Have the source file in a new folder and open Powershell there
1) npm init -y
Generates a package.json file
2) npm install -S child_process chrome-remote-interface atob btoa prompt
These are all the packages that iBelg's tool uses
3) Edit the json file, e.g. give it a name, version, don't forget to keep ibelg's name in the author section.
4) Inside "Scripts": {} add:
"build": "pkg main.js --targets node16-win-x64 --compress Brotli --output InjectCheatsF3"
Or node14-win-x65 if you're using NodeJS 14.
5) Execute: npm run build
I followed your instructions (as best I could, I'm a computer idiot). No luck. I decided to completely delete everything in case I did a typo somewhere or screwed it up. Dunno if Ibelg updated or I had an older version. I believe I had 1.1.1 and now its 1.1.2.

Now I don't know the commands (nullify isn't working, but drop item still is) so gonna try to figure out commands again (: But hey at least I can get my time candies which if I can drop enough thats all I'll need for the awful awful grinds ahead. Thank you!
it's 1.1.1 fork 3. If you dont have the cheat list with 1000+ lines of code or something like that, you got the wrong version.
... and now time to wonder how I got 1.1.2 in my downloads and redo all the steps again (: thanks for the heads up.

EDITING: Well its now back up and running, minus nullify is completely borked. (: Anything nullify did I can't seem to enact. Gonna miss the unlimited crystal fights on maestro, but I'll survive.
Last edited by simcowqueen on Sat Apr 30, 2022 3:28 pm, edited 1 time in total.

FFD
Novice Cheater
Novice Cheater
Posts: 16
Joined: Wed Apr 27, 2022 6:13 pm
Reputation: 2

Re: Legends of Idleon

Post by FFD »

Droping items is considered safe with injectcheatf3?

got_milk4
Noobzor
Noobzor
Posts: 6
Joined: Sat Apr 30, 2022 6:10 pm
Reputation: 0

Re: Legends of Idleon

Post by got_milk4 »

Is there a way to set a statue lvl? (even if it's golden statue and shared on everyone)

i'm trying to go back in lvls after putting too much but it doesn't get saved in the cloud

ScarletKobold
Novice Cheater
Novice Cheater
Posts: 21
Joined: Sun Feb 13, 2022 2:30 am
Reputation: 2

Re: Legends of Idleon

Post by ScarletKobold »

FFD wrote:
Sat Apr 30, 2022 8:58 am
Droping items is considered safe with injectcheatf3?
So far I've dropped in portions of 10,000,000 of stackable items. I accidently picked up certain unobtainable items and never got a shadow ban. Afaik picking up a certain alien test weapon is a shadow ban.

Post Reply

Who is online

Users browsing this forum: ArcanaCh, Douzy, triggeredrtrey