Legends of Idleon
Re: Legends of Idleon
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?
Re: Legends of Idleon
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)
Re: Legends of Idleon
You can get the angel wings and edit it's "all afk gain," there's also the "nullify" command for stamp and alch cost.FFD wrote: ↑Thu Apr 28, 2022 3:19 pmSince 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.
Re: Legends of Idleon
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
- tibasichelp
- Expert Cheater
- Posts: 141
- Joined: Mon Oct 18, 2021 3:18 am
- Reputation: 46
Re: Legends of Idleon
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.
-
- Noobzor
- Posts: 5
- Joined: Tue Apr 12, 2022 12:40 am
- Reputation: 0
Re: Legends of Idleon
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.tibasichelp wrote: ↑Sat Apr 23, 2022 1:37 amStill working. Try verify integrity of game files in Steam and then inject.
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.
- tibasichelp
- Expert Cheater
- Posts: 141
- Joined: Mon Oct 18, 2021 3:18 am
- Reputation: 46
Re: Legends of Idleon
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.simcowqueen wrote: ↑Fri Apr 29, 2022 1:58 pmI'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.tibasichelp wrote: ↑Sat Apr 23, 2022 1:37 amStill working. Try verify integrity of game files in Steam and then inject.
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.
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 }) => {
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
Re: Legends of Idleon
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.
Edit: lvl shrine (random number) did the trick.
-
- Noobzor
- Posts: 5
- Joined: Tue Apr 12, 2022 12:40 am
- Reputation: 0
Re: Legends of Idleon
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.tibasichelp wrote: ↑Fri Apr 29, 2022 3:09 pmTry 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.simcowqueen wrote: ↑Fri Apr 29, 2022 1:58 pmI'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.tibasichelp wrote: ↑Sat Apr 23, 2022 1:37 am
Still working. Try verify integrity of game files in Steam and then inject.
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.
And also do what it is written in this post: viewtopic.php?p=242798#p242798
It'll fix Step 1 loading game too fast.Once you have made the edits in main.js, compile it and build.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 }) => {
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
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!
-
- Novice Cheater
- Posts: 21
- Joined: Sun Feb 13, 2022 2:30 am
- Reputation: 2
Re: Legends of Idleon
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 wrote: ↑Sat Apr 30, 2022 12:36 amI 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.tibasichelp wrote: ↑Fri Apr 29, 2022 3:09 pmTry 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.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.
And also do what it is written in this post: viewtopic.php?p=242798#p242798
It'll fix Step 1 loading game too fast.Once you have made the edits in main.js, compile it and build.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 }) => {
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
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!
-
- Noobzor
- Posts: 5
- Joined: Tue Apr 12, 2022 12:40 am
- Reputation: 0
Re: Legends of Idleon
... 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.ScarletKobold wrote: ↑Sat Apr 30, 2022 5:51 amit'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 wrote: ↑Sat Apr 30, 2022 12:36 amI 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.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.Once you have made the edits in main.js, compile it and build.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 }) => {
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
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!
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.
Re: Legends of Idleon
Droping items is considered safe with injectcheatf3?
Re: Legends of Idleon
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
i'm trying to go back in lvls after putting too much but it doesn't get saved in the cloud
-
- Novice Cheater
- Posts: 21
- Joined: Sun Feb 13, 2022 2:30 am
- Reputation: 2