Legends of Idleon

Ask about cheats/tables for single player games here
darko4201
Noobzor
Noobzor
Posts: 5
Joined: Mon Dec 23, 2019 12:48 pm
Reputation: 1

Re: Legends of Idleon

Post by darko4201 »

Can i find cards id list somewhere?
cant find some that i need

Dragonited
What is cheating?
What is cheating?
Posts: 2
Joined: Mon Oct 10, 2022 3:57 pm
Reputation: 0

Re: Legends of Idleon

Post by Dragonited »

Can someone help me with increasing teleports number ?
I dont have any left as unlock teleport stoped working

ChubyDubyDua
Novice Cheater
Novice Cheater
Posts: 15
Joined: Wed Nov 01, 2023 2:46 pm
Reputation: 0

Re: Legends of Idleon

Post by ChubyDubyDua »

Tindal wrote:
Thu Nov 09, 2023 8:02 pm
ChubyDubyDua wrote:
Thu Nov 09, 2023 7:56 pm
What those the w5 cheats gives?
w5 divinity
w5 gamming
w5 collider
w5 sailing ???

is it safe to use em ?
Yes, it's safe.
You should set values in your cheatConfig at top of file

Code: Select all

     w5: {
        sailing: {
            enable: false,
            IslandDistance: t => t / 2, // islands 50% closer
            MaxChests: t => 1000, // pile holds 1000 chests
            RareTreasureChance: t => t * 5, // 5x chance for rare treasure
            Minimumtraveltime: t => t / 3, // minimum travel time reduced from 2h to 40m
            BoatUpgCostType: t => t, // loot type for upgrade
            BoatUpgCostQty: t => t, // loot amount for upgrade, t => 0 for free upgrades
            boatValue: t => t * 2, // 2x boat loot
            BoatSpeed: t => t * 2, // 2x boat speed
            CloudDiscoverBonus: t => t * 2, // 2x cloud discover bonus
            ArtifactChance: t => t * 5, // 5x artifact discover bonus
            AncientChances: t => t * 5, // 5x ancient chance
            NewCaptBoatSlot: t => 0, // free boat and captain slots
            BuyCaptainCost: t => 0, // free captains
            ArtifactBonus: t => t // bonus from the artifact, needs investigation as to what can be done here!
        },
        gaming: {
            enable: false,
            FertilizerUpgCosts: t => 0,
            SproutCapacity: t => Math.max(22, t + 2),
            MutateUpgCosts: t => 0,
            LogBookBitBonus: t => Math.max(20, t * 2),
            GamingExpPCT: t => t,
            NewMutantChanceDEC: t => t * 5, // new mutant chance multiplied by 5
            SproutGrowthCHANCEperMUT: t => t, // could be a bit fiddly
            SproutGrowthTime: t => t / 5, // sprouts grow 5x faster
            SaveSprinkler: t => t, // Don't use water when using the sprinkler. 1 is a guarantee
            ImportItemCOST: t => 0, // import item upgrades are free
            AcornShopCost: t => 0, //acorn shop upgrades are free
            BoxCost: t => 0 //new boxes are free
        },
        divinity: {
            enable: false,
            StyleLvReq: t => 0, // allow all meditation styles from lvl 0
            DivPerHr: t => t * 3, // base div per hr
            DivPerHr_EXP: t => t * 2, // base xp per hr
            BlesssBonus: t => t * 2, // god blessing bonus
            Bonus_MAJOR: t => t, // link bonus, manipulating this tbd
            Bonus_Minor: t => t, // passive bonus, manipulating this tbd
            OfferingCost: t => 0, // free offerings
            OfferingOdds: t => 1, //offerings always work
        },
        collider: {
		enable: false,
		AtomsUnlocked: t => t, // max 10
		AtomCost: t => 0, // atom collider upgrades are free,
		AtomBonuses: t => t, // atom bonus amount. Unclear how this works yet, assume t => t * 2 would be 2x regular bonus
		AtomBubbleUpgCost: t => 0, // atom bubble upgrades are free,
		AtomThreshold: t => t // unsure what this does
	},
    },
w5 sailing, w5 gaming, w5 divinity and w5 collider will enable the respective cheats.
They work by transforming the original value generated by the game, here called 't' to the thing to the right of the =>. Feel free to edit these. You can put an expression involving t (such as t * 2, or t / 2), or replace it with a static value, such as 1 or 0.

For exmple:
BoatUpgCostQty: t => 0,
Regardless of the original cost to make a boat upgrade, it will now always be 0

BoatSpeed: t => t * 2,
Whatever your original boat speed was, it will now be doubled. If you change to t * 3 it will be tripled, t + 1000 and it will have 1000 added to it.

ArtifactBonus: t => t
This is going to leave the artifact finding bonus exactly as it was. I haven't yet had a chance to experiment, but assume it could be possible to eg increase the bonus provided by an artifact.
To be total honest i have no idea how to do this XD

i mean, i open the file "cheats.js" in notepad?

and then i tried to search the "BoatUpCostQty" but coudlnt find, i only found this

egisterCheats({
name: 'w5',
message: 'all w5 cheats',
canToggleSubcheats: true,
subcheats: [
{ name: 'sailing', message: 'sailing cheats', configurable: { isObject: true } },
{ name: 'gaming', message: 'gaming cheats', configurable: { isObject: true } },
{ name: 'divinity', message: 'divinity cheats', configurable: { isObject: true } },
{ name: 'collider', message: 'collider cheats', configurable: { isObject: true } },
]

but then im confused were to put all that stuff you told me x_x

Tindal
Expert Cheater
Expert Cheater
Posts: 287
Joined: Sun Nov 14, 2021 10:16 am
Reputation: 88

Re: Legends of Idleon

Post by Tindal »

ChubyDubyDua wrote:
Fri Nov 10, 2023 3:46 pm
Tindal wrote:
Thu Nov 09, 2023 8:02 pm
To be total honest i have no idea how to do this XD

i mean, i open the file "cheats.js" in notepad?

and then i tried to search the "BoatUpCostQty" but coudlnt find, i only found this

egisterCheats({
name: 'w5',
message: 'all w5 cheats',
canToggleSubcheats: true,
subcheats: [
{ name: 'sailing', message: 'sailing cheats', configurable: { isObject: true } },
{ name: 'gaming', message: 'gaming cheats', configurable: { isObject: true } },
{ name: 'divinity', message: 'divinity cheats', configurable: { isObject: true } },
{ name: 'collider', message: 'collider cheats', configurable: { isObject: true } },
]

but then im confused were to put all that stuff you told me x_x
Not cheat.js, but config.js or config.custom!

ChubyDubyDua
Novice Cheater
Novice Cheater
Posts: 15
Joined: Wed Nov 01, 2023 2:46 pm
Reputation: 0

Re: Legends of Idleon

Post by ChubyDubyDua »

Tindal wrote:
Fri Nov 10, 2023 5:23 pm
ChubyDubyDua wrote:
Fri Nov 10, 2023 3:46 pm
Tindal wrote:
Thu Nov 09, 2023 8:02 pm
To be total honest i have no idea how to do this XD

i mean, i open the file "cheats.js" in notepad?

and then i tried to search the "BoatUpCostQty" but coudlnt find, i only found this

egisterCheats({
name: 'w5',
message: 'all w5 cheats',
canToggleSubcheats: true,
subcheats: [
{ name: 'sailing', message: 'sailing cheats', configurable: { isObject: true } },
{ name: 'gaming', message: 'gaming cheats', configurable: { isObject: true } },
{ name: 'divinity', message: 'divinity cheats', configurable: { isObject: true } },
{ name: 'collider', message: 'collider cheats', configurable: { isObject: true } },
]

but then im confused were to put all that stuff you told me x_x
Not cheat.js, but config.js or config.custom!
HolyGuacamole!!! it worked!!! Thankys so much!!! god bless you!

SmartDog
Expert Cheater
Expert Cheater
Posts: 94
Joined: Wed Oct 21, 2020 4:20 pm
Reputation: 33

Re: Legends of Idleon

Post by SmartDog »

So, I did try a google and also read a bunch of pages on this post but can anyone save me more searching?

The green gem currency? can I get it? Or is it server sided and can't be edited/hacked?

LinleyWhite
What is cheating?
What is cheating?
Posts: 1
Joined: Mon Oct 30, 2023 8:39 pm
Reputation: 1

Re: Legends of Idleon

Post by LinleyWhite »

StupidDog wrote:
Fri Nov 10, 2023 10:05 pm
So, I did try a google and also read a bunch of pages on this post but can anyone save me more searching?

The green gem currency? can I get it? Or is it server sided and can't be edited/hacked?
They're server sided and can't be influenced.

SmartDog
Expert Cheater
Expert Cheater
Posts: 94
Joined: Wed Oct 21, 2020 4:20 pm
Reputation: 33

Re: Legends of Idleon

Post by SmartDog »

LinleyWhite wrote:
Fri Nov 10, 2023 10:19 pm
They're server sided and can't be influenced.
Thought so, thanks for the speedy reply :) I notice you can spawn everything you can buy with green gems anyways so no biggie :)

dasher
Noobzor
Noobzor
Posts: 14
Joined: Tue Sep 12, 2023 12:32 am
Reputation: 1

Re: Legends of Idleon

Post by dasher »

I changed something about gaming sprouts and now i have a blackout and in my screen won't appear anything. What can I do? How do i spot the error?

This is on red in the chromedebug section:
N.js:1 Uncaught TypeError: Cannot read property '1' of undefined
at Hq.init (N.js:1)
at zl.initScript (N.js:1)
at Vj.initScripts (N.js:1)
at Qb.initScripts (N.js:1)
at a.createActorOfType (N.js:1)
at a.getRecycledActorOfTypeOnLayer (N.js:1)
at a.getRecycledActorOfType (N.js:1)
at Function.c.createRecycledActor (N.js:1)
at Fq.init (N.js:1)
at zl.initScript (N.js:1)

Also this was on red:
Failed to load resource: the server responded with a status of 400 ()

bumistro
Expert Cheater
Expert Cheater
Posts: 60
Joined: Thu Feb 23, 2023 6:01 pm
Reputation: 19

Re: Legends of Idleon

Post by bumistro »

dasher wrote:
Sat Nov 11, 2023 11:43 am
I changed something about gaming sprouts and now i have a blackout and in my screen won't appear anything. What can I do? How do i spot the error?
redownload the files you changed and replace them

LunaOwl2010
What is cheating?
What is cheating?
Posts: 1
Joined: Sat Nov 11, 2023 3:09 pm
Reputation: 0

Re: Legends of Idleon

Post by LunaOwl2010 »

Hi. I'm new here! How do I get started?
Sorry this is my first time posting on a forum
EDIT: I'm using the steam version btw, and I have Cheat Engine running.

dasher
Noobzor
Noobzor
Posts: 14
Joined: Tue Sep 12, 2023 12:32 am
Reputation: 1

Re: Legends of Idleon

Post by dasher »

bumistro wrote:
Sat Nov 11, 2023 1:41 pm
dasher wrote:
Sat Nov 11, 2023 11:43 am
I changed something about gaming sprouts and now i have a blackout and in my screen won't appear anything. What can I do? How do i spot the error?
redownload the files you changed and replace them
Already did that before dropping the question in the forvm. It still didn't work.

dasher
Noobzor
Noobzor
Posts: 14
Joined: Tue Sep 12, 2023 12:32 am
Reputation: 1

Re: Legends of Idleon

Post by dasher »

LunaOwl2010 wrote:
Sat Nov 11, 2023 3:12 pm
Hi. I'm new here! How do I get started?
Sorry this is my first time posting on a forum
EDIT: I'm using the steam version btw, and I have Cheat Engine running.
Go to 2nd post of page 37, and follow the steps. They're pretty simple. Read from above.

magiman
Expert Cheater
Expert Cheater
Posts: 67
Joined: Sat Apr 09, 2022 8:47 pm
Reputation: 15

Re: Legends of Idleon

Post by magiman »

LunaOwl2010 wrote:
Sat Nov 11, 2023 3:12 pm
Hi. I'm new here! How do I get started?
Sorry this is my first time posting on a forum
EDIT: I'm using the steam version btw, and I have Cheat Engine running.
Welcome. You can do some things with Cheat Engine, but it is a lot easier and more convenient to use the injector tool Valleymon continues to update/improve (it has been continued from the efforts of others since back when this thread was young). viewtopic.php?p=268697#p268697

interlope
Novice Cheater
Novice Cheater
Posts: 19
Joined: Sun Aug 06, 2023 8:49 pm
Reputation: 0

Re: Legends of Idleon

Post by interlope »

any ideas how to finish the task from the taskboard w5 ? (the cracking the kruk as example)

Post Reply

Who is online

Users browsing this forum: Bing [Bot], sakurano1, SemrushBot, YandexBot