Legends of Idleon
Re: Legends of Idleon
Can i find cards id list somewhere?
cant find some that i need
cant find some that i need
-
- What is cheating?
- Posts: 2
- Joined: Mon Oct 10, 2022 3:57 pm
- Reputation: 0
Re: Legends of Idleon
Can someone help me with increasing teleports number ?
I dont have any left as unlock teleport stoped working
I dont have any left as unlock teleport stoped working
-
- Novice Cheater
- Posts: 23
- Joined: Wed Nov 01, 2023 2:46 pm
- Reputation: 1
Re: Legends of Idleon
To be total honest i have no idea how to do this XDTindal wrote: ↑Thu Nov 09, 2023 8:02 pmYes, it's safe.ChubyDubyDua wrote: ↑Thu Nov 09, 2023 7:56 pmWhat those the w5 cheats gives?
w5 divinity
w5 gamming
w5 collider
w5 sailing ???
is it safe to use em ?
You should set values in your cheatConfig at top of file
w5 sailing, w5 gaming, w5 divinity and w5 collider will enable the respective cheats.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 }, },
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.
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
Re: Legends of Idleon
Not cheat.js, but config.js or config.custom!ChubyDubyDua wrote: ↑Fri Nov 10, 2023 3:46 pmTo 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
-
- Novice Cheater
- Posts: 23
- Joined: Wed Nov 01, 2023 2:46 pm
- Reputation: 1
Re: Legends of Idleon
HolyGuacamole!!! it worked!!! Thankys so much!!! god bless you!Tindal wrote: ↑Fri Nov 10, 2023 5:23 pmNot cheat.js, but config.js or config.custom!ChubyDubyDua wrote: ↑Fri Nov 10, 2023 3:46 pmTo 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
Re: Legends of Idleon
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?
The green gem currency? can I get it? Or is it server sided and can't be edited/hacked?
-
- What is cheating?
- Posts: 1
- Joined: Mon Oct 30, 2023 8:39 pm
- Reputation: 1
Re: Legends of Idleon
Thought so, thanks for the speedy reply I notice you can spawn everything you can buy with green gems anyways so no biggie
Re: Legends of Idleon
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 ()
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 ()
-
- What is cheating?
- Posts: 1
- Joined: Sat Nov 11, 2023 3:09 pm
- Reputation: 0
Re: Legends of Idleon
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.
Sorry this is my first time posting on a forum
EDIT: I'm using the steam version btw, and I have Cheat Engine running.
Re: Legends of Idleon
Already did that before dropping the question in the forvm. It still didn't work.
Re: Legends of Idleon
Go to 2nd post of page 37, and follow the steps. They're pretty simple. Read from above.LunaOwl2010 wrote: ↑Sat Nov 11, 2023 3:12 pmHi. 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.
Re: Legends of Idleon
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#p268697LunaOwl2010 wrote: ↑Sat Nov 11, 2023 3:12 pmHi. 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.
Re: Legends of Idleon
any ideas how to finish the task from the taskboard w5 ? (the cracking the kruk as example)
Who is online
Users browsing this forum: Google [Bot], wizbank