Page 300 of 375

Re: Legends of Idleon

Posted: Fri Nov 10, 2023 11:05 am
by darko4201
Can i find cards id list somewhere?
cant find some that i need

Re: Legends of Idleon

Posted: Fri Nov 10, 2023 3:32 pm
by Dragonited
Can someone help me with increasing teleports number ?
I dont have any left as unlock teleport stoped working

Re: Legends of Idleon

Posted: Fri Nov 10, 2023 3:46 pm
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

Re: Legends of Idleon

Posted: Fri Nov 10, 2023 5:23 pm
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!

Re: Legends of Idleon

Posted: Fri Nov 10, 2023 6:22 pm
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!

Re: Legends of Idleon

Posted: Fri Nov 10, 2023 10:05 pm
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?

Re: Legends of Idleon

Posted: Fri Nov 10, 2023 10:19 pm
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.

Re: Legends of Idleon

Posted: Fri Nov 10, 2023 10:37 pm
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 :)

Re: Legends of Idleon

Posted: Sat Nov 11, 2023 11:43 am
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 ()

Re: Legends of Idleon

Posted: Sat Nov 11, 2023 1:41 pm
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

Re: Legends of Idleon

Posted: Sat Nov 11, 2023 3:12 pm
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.

Re: Legends of Idleon

Posted: Sat Nov 11, 2023 4:45 pm
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.

Re: Legends of Idleon

Posted: Sat Nov 11, 2023 4:46 pm
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.

Re: Legends of Idleon

Posted: Sat Nov 11, 2023 4:46 pm
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

Re: Legends of Idleon

Posted: Sat Nov 11, 2023 7:47 pm
by interlope
any ideas how to finish the task from the taskboard w5 ? (the cracking the kruk as example)