Page 304 of 369

Re: Legends of Idleon

Posted: Fri Nov 17, 2023 5:21 am
by kingtom2000
Can u guys teach me how to wipe all cards and reset GemItemsPurchased counted?

Re: Legends of Idleon

Posted: Fri Nov 17, 2023 11:16 am
by bumistro
Semetric wrote:
Fri Nov 17, 2023 1:41 am
Does anyone know the way to complete dreams?
viewtopic.php?p=319326#p319326

Re: Legends of Idleon

Posted: Fri Nov 17, 2023 2:10 pm
by shesh
shesh wrote:
Thu Nov 16, 2023 1:28 pm
i tried multiplying my alchemy liquid rate by 4, but it changed to NaN.
how would i be able to achive that? im talking about this part from config.js:

cauldron: {
liq_rate: t => t * 4,
},

entering a random number changes the rate to that number, but i want to multiply the current liquid rate
i found it out myself. i multiplied my liquid rate by 4. in cheats.js find this:

Code: Select all

	events(189)._customBlock_CauldronStats = new Proxy(events(189)._customBlock_CauldronStats, {
		apply: function(originalFn, context, argumentsList) {
			const t = argumentsList[0];
			if ((cheatState.cauldron.bubblecost) 	&& t == "CauldronCosts") 		return 0; 		// Nullified cauldron cost
			if ((cheatState.cauldron.vialcost) 		&& t == "VialCosts")			return 0; 		// Nullified vial cost
			if ((cheatState.cauldron.lvlreq) 		&& t == "CauldronLvsBrewREQ")	return 0; 		// Nullified brew reqs
			if ((cheatState.cauldron.newbubble) 	&& t == "PctChanceNewBubble")	return 1000000; // Big enough new bubble chance
			if ((cheatState.cauldron.re_speed) 		&& t == "ResearchSpeed")		return 10000; 	// Instant research speed
			if ((cheatState.cauldron.liq_rate) 		&& t == "LiquidHRrate")			return cheatConfig.cauldron.liq_rate(t); 	// Quick liquid
			return Reflect.apply(originalFn, context, argumentsList);
		}
and replace with this:

Code: Select all

	events(189)._customBlock_CauldronStats = new Proxy(events(189)._customBlock_CauldronStats, {
		apply: function(originalFn, context, argumentsList) {
			const t = argumentsList[0];
			if ((cheatState.cauldron.bubblecost) && t == "CauldronCosts") return 0; // Nullified cauldron cost
			if ((cheatState.cauldron.vialcost) && t == "VialCosts") return 0; // Nullified vial cost
			if ((cheatState.cauldron.lvlreq) && t == "CauldronLvsBrewREQ") return 0; // Nullified brew reqs
			if ((cheatState.cauldron.newbubble) && t == "PctChanceNewBubble") return 1000000; // Big enough new bubble chance
			if ((cheatState.cauldron.re_speed) && t == "ResearchSpeed") return 10000; // Instant research speed
			
			if (t == "LiquidHRrate") {
				const originalValue = Reflect.apply(originalFn, context, argumentsList);
				return originalValue * 4; // Multiply the original value by 4
			}

			return Reflect.apply(originalFn, context, argumentsList);
		}
a more easy solution with "multiply liquidrate" would be nice in a future update, but for now this will do for me.

edit: the cheat will be always active, keep that in mind. this is as ghetto and hardcoded as it gets

Re: Legends of Idleon

Posted: Fri Nov 17, 2023 4:09 pm
by austinw0012
do yall think id be shadow banned if i gave myself [Link] (the owners tame tag) lol

Re: Legends of Idleon

Posted: Fri Nov 17, 2023 4:28 pm
by Semetric
Has anyone fixed the Divinity Pearl Unlock? Doesn't seem to work past 50 no matter what.

Re: Legends of Idleon

Posted: Fri Nov 17, 2023 9:57 pm
by adenaaass153
Tindal wrote:
Fri Sep 29, 2023 12:59 pm
nulledvoid wrote:
Fri Sep 29, 2023 12:28 pm
So the following is to unlock bundles correct?:

Code: Select all

chng this["com.stencyl.Engine"].engine.getGameAttribute("BundlesReceived").h["bun_p"]=1
Is there a list of bundle codes to select which bundles i want to receive and have them set to unlocked?
a Lava Supporter Pack - Trailblazer (trophy) + candy
b New Year Pack - Giftmas Tree (prem.hat)
c Starter Pack - Newbie Card Pack x3 + candy
d Easter Bundle - Big Bunny (prem.hat)
e Totally Chill Pack - Fluffy Ramsy (prem.hat)
f Summer Bundle - Beach Bro (trophy)
g Dungeon Bundle - Boosted Dungeon Runs x20
h Giftmas Bundle - Giftmas Snoozy Cap x3 (prem.hat) + 2021 Giftmas Box x250
i Auto-Loot Pack - Auto-Loot Toggle + 5 Inventory Slots & 5 Storage Chest Slots
j Outta This World Pack - Angel Wings (cape)
k Eggscellent Pack - Easter Egg Backpack (cape)
l Super Hot Fire Pack - Molten Cloak (cape)
m Gem motherlode pack - gems + 100 envelopes
n Riftwalker Pack - Riftwalker wings + Riftwalker Nametag
o Bloomin' Pet Pack - Blooming Vine + Pet Crystal x2,000
p Island Explorer Pack - Island Adventurer Nametag

q Equinox pack

Remember, that you only mark your acc, that bundle already bought and you dont get bundle items (only bundle bonuses)
Can anyone help me identify what im doing wrong?
[Link]

I tried putting the same command into chrome debug and it told me something is wrong with "this", but i cant figure it out.

Re: Legends of Idleon

Posted: Fri Nov 17, 2023 10:20 pm
by Tindal
adenaaass153 wrote:
Fri Nov 17, 2023 9:57 pm
Tindal wrote:
Fri Sep 29, 2023 12:59 pm
Can anyone help me identify what im doing wrong?
[Link]

I tried putting the same command into chrome debug and it told me something is wrong with "this", but i cant figure it out.
This command not for chrome, but for console
And there is error in the command at your screenshot. Be more careful

Re: Legends of Idleon

Posted: Fri Nov 17, 2023 10:29 pm
by bumistro
Semetric wrote:
Fri Nov 17, 2023 4:28 pm
Has anyone fixed the Divinity Pearl Unlock? Doesn't seem to work past 50 no matter what.
disable wide candy and it should work
Tindal wrote:
Fri Nov 17, 2023 10:20 pm
adenaaass153 wrote:
Fri Nov 17, 2023 9:57 pm
Tindal wrote:
Fri Sep 29, 2023 12:59 pm
Can anyone help me identify what im doing wrong?
[Link]

I tried putting the same command into chrome debug and it told me something is wrong with "this", but i cant figure it out.
This command not for chrome, but for console
The other way around :)

Re: Legends of Idleon

Posted: Fri Nov 17, 2023 10:37 pm
by Tindal
bumistro wrote:
Fri Nov 17, 2023 10:29 pm
Tindal wrote:
Fri Nov 17, 2023 10:20 pm
adenaaass153 wrote:
Fri Nov 17, 2023 9:57 pm


Can anyone help me identify what im doing wrong?
[Link]

I tried putting the same command into chrome debug and it told me something is wrong with "this", but i cant figure it out.
This command not for chrome, but for console
The other way around :)
Are you sure?
Image

Re: Legends of Idleon

Posted: Fri Nov 17, 2023 11:17 pm
by holyshitstoppls
austinw0012 wrote:
Fri Nov 17, 2023 4:09 pm
do yall think id be shadow banned if i gave myself [Link] (the owners tame tag) lol
Giving yourself any of lava's items is a guaranteed way to get shadow banned instantly.

Re: Legends of Idleon

Posted: Sat Nov 18, 2023 12:08 am
by bumistro
Tindal wrote:
Fri Nov 17, 2023 10:37 pm
bumistro wrote:
Fri Nov 17, 2023 10:29 pm
Tindal wrote:
Fri Nov 17, 2023 10:20 pm


This command not for chrome, but for console
The other way around :)
Are you sure?
Image
I use shorter commands in the console

Re: Legends of Idleon

Posted: Sat Nov 18, 2023 3:15 am
by ScarletFeather
Messed up chng with Breeding in [22]. Anyone know how to input it back with the F5 tool and fix the values?

Re: Legends of Idleon

Posted: Sat Nov 18, 2023 3:30 am
by shesh
ScarletFeather wrote:
Sat Nov 18, 2023 3:15 am
Messed up chng with Breeding in [22]. Anyone know how to input it back with the F5 tool and fix the values?
the last 3 posts on page 303 might help you, did the same thing with another value

Re: Legends of Idleon

Posted: Sat Nov 18, 2023 7:10 am
by kingtom2000
GOJIRA wrote:
Sat Nov 18, 2023 5:41 am
dasher wrote:
Thu Nov 16, 2023 6:53 pm
I'm stuck with a blackscreen whenever i select a character to play. Anyone knows what this means? "Failed to load resource: the server responded with a status of 400 ()".
it means you have "bricked" your game!!
by either incorrectly editing files as perhaps even incorrectly installing?
personally its over my pay grade as dont even know what os your even on :/

id try a completely clean/fresh install and manually delete the previous files before hand so it don't over write/overlap anything incidentally and go from there :/
thanks but my account not "bricked" i just want to remove some item over bought. and i found the way to remove them. Sry for my bad english

Re: Legends of Idleon

Posted: Sat Nov 18, 2023 11:44 am
by FakeRex
This is what it says on registration page

Image

It is not that difficult thing to do