Yes, I have Nodejs installed. Yes, I have a config.js and a config.custom.js. And yes, the two .exe are in the same folder. When I open ICF5, it will also open Idleon, but then the console won't work any further than what's in my screen shot.Okay1414 wrote: ↑Sat Oct 19, 2024 7:14 pmI can't see anything obviously bad with what you've described so far, so here goes:Timaeria wrote: ↑Fri Oct 18, 2024 1:35 pmSorry if this has been asked before. I've tried searching through this thread, but the results turn up blank every single time.
I followed the steps of extracting the zip folder into my idleon directory, renaming the config file, and I went in and adjusted the chrome location path since mine is in a different spot, but every time I run ICF5, this is what my console looks like. It won't move past this point and I can't interact with it.
[Link]
Could someone assist me in getting this to work? I'm coming back to idleon after a two year hiatus, and would like to get caught up.
Do you have Nodejs installed?
Have you tried loading the injector with no/few startup cheats on?
Other troubleshooting: You have both a config.js and a config.custom.js, yes? And by extracting the zip into the directory I'm hoping you meant that injectcheatsF5.exe/etc files are in the same folder as legendsofidleon.exe and not at like '...\Legends of Idleon\injectCheatsF5', because the .exes need to be in the same folder.
Chrome location is set at the bottom of config.custom.js though, a rebuild shouldn't be needed then (unless AP changed in in main.js instead of config).onigiriman22 wrote: ↑Sat Oct 19, 2024 2:53 amAfter changing stuff in main.js (e.g. chrome location), make sure to recompile:
[...]
Legends of Idleon
Re: Legends of Idleon
Re: Legends of Idleon
Hi guys, i kinda need some help. Some week ago i think i messed up something with gaming, even if i have 500+lv on the timer in the fertilizer tab and 286% faster plants growth with squirrel the game says i have 8.5min on average for plants to grow compared to others that may have 1min or even less
Here's that shows the average time:
[Link]
Thx in advance if someone is able to help
Here's that shows the average time:
[Link]
Thx in advance if someone is able to help
- onigiriman22
- Noobzor
- Posts: 14
- Joined: Mon Aug 19, 2024 4:01 pm
- Reputation: 1
Re: Legends of Idleon
Oh yes, sorry, I have my own custom build of the injector and that was what was in my mind. Apologies.Okay1414 wrote: ↑Sat Oct 19, 2024 7:14 pmChrome location is set at the bottom of config.custom.js though, a rebuild shouldn't be needed then (unless AP changed in in main.js instead of config).onigiriman22 wrote: ↑Sat Oct 19, 2024 2:53 amAfter changing stuff in main.js (e.g. chrome location), make sure to recompile:
[...]
Re: Legends of Idleon
I unfortunately cant seem to be able to clink on the links on valleymons post. if anyone knows why something would block links on this website then help would be appriciated. thank you
edit: different problem now. game crashes on load with cheats injected
edit: different problem now. game crashes on load with cheats injected
-
- What is cheating?
- Posts: 2
- Joined: Mon Oct 14, 2024 6:31 pm
- Reputation: 0
Re: Legends of Idleon
Hey, I was wondering if anyone could help me just completely wipe my slab? I accidentally added some stamps and things that are impossible to get normally and am unable to find any answer for cleaning it up that works. Thanks ahead of time
Re: Legends of Idleon
the slab is stored in bEngine.gameAttributes.h.Cards[1], if it still recent (stamp and unobtainable item you mentioned) you can figure out what's the item name then use this code:GamerGrafiai wrote: ↑Sun Oct 20, 2024 9:49 pmHey, I was wondering if anyone could help me just completely wipe my slab? I accidentally added some stamps and things that are impossible to get normally and am unable to find any answer for cleaning it up that works. Thanks ahead of time
Code: Select all
bEngine.gameAttributes.h.Cards[1].splice(bEngine.gameAttributes.h.Cards[1].indexOf("itemName"), 1)
Re: Legends of Idleon
Got it to work! Bitdefender was hard blocking ICF5 from executing so I had to add a manual bypass through the firewall. Thank you onigiriman22 and Okay1414 for the assistance.
-
- Noobzor
- Posts: 7
- Joined: Wed Jul 05, 2023 6:26 am
- Reputation: 0
Re: Legends of Idleon
dawg i messed up my coin are nan now any idea how to fix it? also teach me chrome debug
Re: Legends of Idleon
chrome debug code to make ore amount and duration to smelt halved;
it just a way to let you keep up with refinery cost (in a case you dont use refinery cost nullification) or just to make godshard farming less tedious,
would be nice if someone could turn this into a command cheat tho.
also im trying to figure out how to make smith cheat (cost nullified; 0 copper) is configurable to like say 50% / 75% / 90% cheaper instead of nullifying it completely, if anyone know or able to share the configured cheat please lmk:)
Edit:
i was trying to remove some "unobtainable" cards, which is event cards. but the result is quite annoying
the cards is in fact 0 or to be exact not even exists within Cards[0] object, it just somehow the ruby border still showing and the set still count as if i have them all
Spoiler
Code: Select all
let itemDefinitions = bEngine.getGameAttribute("ItemDefinitionsGET").h;
for (let key in itemDefinitions) {
let item = itemDefinitions[key].h;
if (item && 'Amount' in item && 'Cooldown' in item) {
item.Amount = Math.floor(item.Amount / 2);
item.Cooldown = Math.floor(item.Cooldown / 2);
}
}
console.log("Updated Item Definitions:", itemDefinitions);
would be nice if someone could turn this into a command cheat tho.
also im trying to figure out how to make smith cheat (cost nullified; 0 copper) is configurable to like say 50% / 75% / 90% cheaper instead of nullifying it completely, if anyone know or able to share the configured cheat please lmk:)
Edit:
i was trying to remove some "unobtainable" cards, which is event cards. but the result is quite annoying
the cards is in fact 0 or to be exact not even exists within Cards[0] object, it just somehow the ruby border still showing and the set still count as if i have them all
-
- What is cheating?
- Posts: 2
- Joined: Mon Oct 14, 2024 6:31 pm
- Reputation: 0
Re: Legends of Idleon
Thank you! I managed to fix my slab and remove all of the items I shouldn't of had.Gizzmy wrote: ↑Mon Oct 21, 2024 7:25 amthe slab is stored in bEngine.gameAttributes.h.Cards[1], if it still recent (stamp and unobtainable item you mentioned) you can figure out what's the item name then use this code:GamerGrafiai wrote: ↑Sun Oct 20, 2024 9:49 pmHey, I was wondering if anyone could help me just completely wipe my slab? I accidentally added some stamps and things that are impossible to get normally and am unable to find any answer for cleaning it up that works. Thanks ahead of timewhere "itemName" is the name that registered within the arrayCode: Select all
bEngine.gameAttributes.h.Cards[1].splice(bEngine.gameAttributes.h.Cards[1].indexOf("itemName"), 1)
Re: Legends of Idleon
Guys, is there a way of changing atom particles value with cheat engine? im not used to other ways of cheating this game. for some reason, i cant find atom colider value with cheat engine
-
- Noobzor
- Posts: 8
- Joined: Fri Sep 27, 2024 11:52 am
- Reputation: 6
Re: Legends of Idleon
Does someone know how to edit time needed to complete a sneaking "run"?
I been looking a bit around the code but dont know which Event is the one for sneaking neither the argument im exactly looking for, i found out how to change the upgrades and jade with bEngine.gameAttribute but thats about it.
I been looking a bit around the code but dont know which Event is the one for sneaking neither the argument im exactly looking for, i found out how to change the upgrades and jade with bEngine.gameAttribute but thats about it.
-
- Noobzor
- Posts: 7
- Joined: Wed Jul 05, 2023 6:26 am
- Reputation: 0
Re: Legends of Idleon
hey anyone know how to unshadowbanned?
-
- Noobzor
- Posts: 9
- Joined: Fri Oct 25, 2024 8:47 am
- Reputation: 0
Re: Legends of Idleon
hey guys, new to this forum and cheating in general. I have nodejs and the zip file and am now wondering if there’s a guide on here that someone could lead me to. I only wish to cheat in things like the packs, gems, and pets. Lastly, is there a risk for being banned? Questioning if I should do this on my main account. Thanks!
-
- Noobzor
- Posts: 9
- Joined: Fri Oct 25, 2024 8:47 am
- Reputation: 0
Re: Legends of Idleon
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.appleloverjack123 wrote: ↑Fri Oct 25, 2024 9:09 amhey guys, new to this forum and cheating in general. I have nodejs and the zip file and am now wondering if there’s a guide on here that someone could lead me to. I only wish to cheat in things like the packs, gems, and pets. Lastly, is there a risk for being banned? Questioning if I should do this on my main account. Thanks!
Who is online
Users browsing this forum: AzukaTems, Badbecky21, Google [Bot], mldt-f1