Legends of Idleon

Ask about cheats/tables for single player games here
Timaeria
Noobzor
Noobzor
Posts: 5
Joined: Tue Nov 16, 2021 10:18 pm
Reputation: 0

Re: Legends of Idleon

Post by Timaeria »

Okay1414 wrote:
Sat Oct 19, 2024 7:14 pm
Timaeria wrote:
Fri Oct 18, 2024 1:35 pm
Sorry 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.
I can't see anything obviously bad with what you've described so far, so here goes:

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.
onigiriman22 wrote:
Sat Oct 19, 2024 2:53 am
After changing stuff in main.js (e.g. chrome location), make sure to recompile:
[...]
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).
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.

reskoil
What is cheating?
What is cheating?
Posts: 1
Joined: Sun Oct 20, 2024 11:38 am
Reputation: 0

Re: Legends of Idleon

Post by reskoil »

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

User avatar
onigiriman22
Noobzor
Noobzor
Posts: 14
Joined: Mon Aug 19, 2024 4:01 pm
Reputation: 1

Re: Legends of Idleon

Post by onigiriman22 »

Okay1414 wrote:
Sat Oct 19, 2024 7:14 pm
onigiriman22 wrote:
Sat Oct 19, 2024 2:53 am
After changing stuff in main.js (e.g. chrome location), make sure to recompile:
[...]
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).
Oh yes, sorry, I have my own custom build of the injector and that was what was in my mind. Apologies.

chaoryka
What is cheating?
What is cheating?
Posts: 1
Joined: Tue Jul 04, 2023 10:51 pm
Reputation: 0

Re: Legends of Idleon

Post by chaoryka »

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

GamerGrafiai
What is cheating?
What is cheating?
Posts: 2
Joined: Mon Oct 14, 2024 6:31 pm
Reputation: 0

Re: Legends of Idleon

Post by GamerGrafiai »

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

Gizzmy
Novice Cheater
Novice Cheater
Posts: 19
Joined: Thu Sep 26, 2024 5:27 pm
Reputation: 7

Re: Legends of Idleon

Post by Gizzmy »

GamerGrafiai wrote:
Sun Oct 20, 2024 9:49 pm
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
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:

Code: Select all

bEngine.gameAttributes.h.Cards[1].splice(bEngine.gameAttributes.h.Cards[1].indexOf("itemName"), 1)
where "itemName" is the name that registered within the array

Timaeria
Noobzor
Noobzor
Posts: 5
Joined: Tue Nov 16, 2021 10:18 pm
Reputation: 0

Re: Legends of Idleon

Post by Timaeria »

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.

islewantmore
Noobzor
Noobzor
Posts: 7
Joined: Wed Jul 05, 2023 6:26 am
Reputation: 0

Re: Legends of Idleon

Post by islewantmore »

dawg i messed up my coin are nan now any idea how to fix it? also teach me chrome debug

Gizzmy
Novice Cheater
Novice Cheater
Posts: 19
Joined: Thu Sep 26, 2024 5:27 pm
Reputation: 7

Re: Legends of Idleon

Post by Gizzmy »

chrome debug code to make ore amount and duration to smelt halved;
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);
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
Image
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

GamerGrafiai
What is cheating?
What is cheating?
Posts: 2
Joined: Mon Oct 14, 2024 6:31 pm
Reputation: 0

Re: Legends of Idleon

Post by GamerGrafiai »

Gizzmy wrote:
Mon Oct 21, 2024 7:25 am
GamerGrafiai wrote:
Sun Oct 20, 2024 9:49 pm
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
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:

Code: Select all

bEngine.gameAttributes.h.Cards[1].splice(bEngine.gameAttributes.h.Cards[1].indexOf("itemName"), 1)
where "itemName" is the name that registered within the array
Thank you! I managed to fix my slab and remove all of the items I shouldn't of had.

ga00250
What is cheating?
What is cheating?
Posts: 2
Joined: Sun Nov 19, 2023 9:47 pm
Reputation: 0

Re: Legends of Idleon

Post by ga00250 »

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

noodlexpen
Noobzor
Noobzor
Posts: 8
Joined: Fri Sep 27, 2024 11:52 am
Reputation: 6

Re: Legends of Idleon

Post by noodlexpen »

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.

islewantmore
Noobzor
Noobzor
Posts: 7
Joined: Wed Jul 05, 2023 6:26 am
Reputation: 0

Re: Legends of Idleon

Post by islewantmore »

hey anyone know how to unshadowbanned?

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

Re: Legends of Idleon

Post by appleloverjack123 »

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!

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

Re: Legends of Idleon

Post by appleloverjack123 »

appleloverjack123 wrote:
Fri Oct 25, 2024 9:09 am
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!
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.

Post Reply

Who is online

Users browsing this forum: AzukaTems, Badbecky21, Google [Bot], mldt-f1