I think an update might have broke it. I'm getting the same thing now.JDub76 wrote: ↑Wed Jan 18, 2023 2:12 pmI put the 3 Files into the Idleon folder, when i use the injectF5 script it loads up, says injected cheats, loaded cheats, then starts idleon with a greyscreen(assume its standard loading screen) and after about 2 seconds both the cmd console and idlon crash, any idea what i might have done wrong?
Legends of Idleon
-
- Noobzor
- Posts: 5
- Joined: Fri Apr 01, 2022 4:53 am
- Reputation: 0
Re: Legends of Idleon
-
- What is cheating?
- Posts: 3
- Joined: Sat Dec 31, 2022 10:26 pm
- Reputation: 0
Re: Legends of Idleon
if u guys need to unlock artifactW5 but "w5 sailing" change ArtifactBonus: t => t multiply not working
u can edit captain % Artifact Find Chance on chromedubug for easy to find it.
sorry for my english.
u can edit captain % Artifact Find Chance on chromedubug for easy to find it.
sorry for my english.
Re: Legends of Idleon
Spoiler
zeroazico wrote: ↑Fri Jan 20, 2023 2:58 amHow can i use this code ?LoveOryks wrote: ↑Wed Jan 18, 2023 5:05 pmDivinity Pearl use post-Lv50:Replace 50 with the cap you want (I personally put 999 and works wonders).Code: Select all
if (50 > (null == tr ? 0 : "number" == typeof tr ? c.__cast(tr, k) : "number" == typeof tr && (0 | tr) === tr ? c.__cast(tr, l) : "boolean" == typeof tr ? c.__cast(tr, n) ? 1 : 0 : "string" == typeof tr ? parseFloat(tr) : parseFloat(g.string(tr))) && 16 > a.engine.getGameAttribute("DummyNumber3")) {
add into cheats.js ?
Thank you
Re: Legends of Idleon
viewtopic.php?p=268697#p268697
Update 22/01/2023
Added
nomore x: This item will no longer drop (think spore tees, headbands, give up on life pants, inv bag g etc)
unlock presets: Allows changing of skill presets on any map, not just town
Update 22/01/2023
Added
nomore x: This item will no longer drop (think spore tees, headbands, give up on life pants, inv bag g etc)
unlock presets: Allows changing of skill presets on any map, not just town
Re: Legends of Idleon
A new version did just drop, will update and see shortly.robbversion1 wrote: ↑Fri Jan 20, 2023 5:19 amI think an update might have broke it. I'm getting the same thing now.JDub76 wrote: ↑Wed Jan 18, 2023 2:12 pmI put the 3 Files into the Idleon folder, when i use the injectF5 script it loads up, says injected cheats, loaded cheats, then starts idleon with a greyscreen(assume its standard loading screen) and after about 2 seconds both the cmd console and idlon crash, any idea what i might have done wrong?
Update: It's working fine?
Last edited by valleymon on Sun Jan 22, 2023 11:51 pm, edited 1 time in total.
Re: Legends of Idleon
If you like you can add a replacement intozeroazico wrote: ↑Fri Jan 20, 2023 2:58 amHow can i use this code ?LoveOryks wrote: ↑Wed Jan 18, 2023 5:05 pmDivinity Pearl use post-Lv50:Replace 50 with the cap you want (I personally put 999 and works wonders).Code: Select all
if (50 > (null == tr ? 0 : "number" == typeof tr ? c.__cast(tr, k) : "number" == typeof tr && (0 | tr) === tr ? c.__cast(tr, l) : "boolean" == typeof tr ? c.__cast(tr, n) ? 1 : 0 : "string" == typeof tr ? parseFloat(tr) : parseFloat(g.string(tr))) && 16 > a.engine.getGameAttribute("DummyNumber3")) {
add into cheats.js ?
Thank you
Code: Select all
function getZJSManipulator() {
return function (zjs) {
// I'm putting this here in case it's helpful to manipulate z.js directly.
// Most cheats are simple enough to implement without doing so, but there are some cases where it's just very handy.
// InjectCheatsF5 (as of Jan 2023 release) will pass the z.js code to this function to allow for regex replacing etc before it is loaded by the game
zjs.replace("oldcode", "newcode");
return zjs;
}.toString();
}
Just set oldcode and newcode to be what you want to change in zjs
Re: Legends of Idleon
is there way to unlock pet arena stage 200 w/o actually doing it? or maybe god mode for afk? i mean i could but the time & rng you need is insane, its approx 3hour 20minutes to do it according to quides.
Re: Legends of Idleon
chng bEngine.getGameAttribute("OptionsListAccount")[89]=200
-
- Noobzor
- Posts: 5
- Joined: Fri Apr 01, 2022 4:53 am
- Reputation: 0
Re: Legends of Idleon
robbversion1 wrote: ↑Sun Jan 22, 2023 10:50 pmI made a mistake. I didnt realize you had updated the entire package. I had only updated cheats.js with the latest code. I grabbed the latest and am good to go.
Re: Legends of Idleon
I have this in my cheat.js but the console closes after it has loaded cheats, what am I doing wrong?
If I comment the zjs.replace out the game loads normally, I am using version 1.1 of inject 5 from January 5th.
Edit: Fixed it myself, the problem is the extra ", when I shortened the replace string to not include any " it now works.
Edit 2: The replace doesn't seem to be working ingame, as the divinity pearls aren't working on skills over 50 and I can still only buy 3 miracle chests in the gem shop. Here is my new code:
Code: Select all
function getZJSManipulator() {
return function (zjs) {
// I'm putting this here in case it's helpful to manipulate z.js directly.
// Most cheats are simple enough to implement without doing so, but there are some cases where it's just very handy.
// InjectCheatsF5 (as of Jan 2023 release) will pass the z.js code to this function to allow for regex replacing etc before it is loaded by the game
zjs.replace("if (50 > (null == tr ? 0 : "number" == typeof tr ? c.__cast(tr, k) : "number" == typeof tr && (0 | tr) === tr ? c.__cast(tr, l)", "if (999 > (null == tr ? 0 : "number" == typeof tr ? c.__cast(tr, k) : "number" == typeof tr && (0 | tr) === tr ? c.__cast(tr, l)");
return zjs;
}.toString();
}
Edit: Fixed it myself, the problem is the extra ", when I shortened the replace string to not include any " it now works.
Edit 2: The replace doesn't seem to be working ingame, as the divinity pearls aren't working on skills over 50 and I can still only buy 3 miracle chests in the gem shop. Here is my new code:
Code: Select all
function getZJSManipulator() {
return function (zjs) {
// I'm putting this here in case it's helpful to manipulate z.js directly.
// Most cheats are simple enough to implement without doing so, but there are some cases where it's just very handy.
// InjectCheatsF5 (as of Jan 2023 release) will pass the z.js code to this function to allow for regex replacing etc before it is loaded by the game
zjs.replace("if (50 > (null == tr ? 0", "if (999 > (null == tr ? 0)");
zjs.replace("345 127 3", "345 127 3000");
return zjs;
}.toString();
}
Re: Legends of Idleon
anyone knows code in z.js, so that i can freely link and unlink god link
Re: Legends of Idleon
Hello, how i can unlock all achievements?
Re: Legends of Idleon
HAHAHAHAHvalleymon wrote: ↑Sat Oct 08, 2022 2:52 pmThat is incredibly lucky that you happened to remember and type out the command exactly, I was paying close enough attention to notice the square brackets and that it was actually the thing causing the problemenelysion wrote: ↑Sat Oct 08, 2022 1:45 pmvalleymon wrote: ↑Sat Oct 08, 2022 7:49 am
Tricky to say, but chng bEngine.getGameAttribute("OptionsListAccount")[71]=[100000] would set OptionsListAccount[71] to an array containing the single number 100000. It should be an integer not an array.
Try chng bEngine.getGameAttribute("OptionsListAccount")[71]=100000
Also, safer option is drop DungCredits1
Oh holy shit you fixed it, you're an absolute saint. I can't thank you enough. the reason I used that instead of drop dungcredits1 is because I had mistakenly dropped too many credits already and wanted to reset my dungeon rank.
Happy it worked out. chng comes with health warnings very validly!
FYI in case you weren't aware, if you run the injector, then navigage to chrome://inspect/#devices in your browser. Click configure next to "Discover network targets", then add localhost:32123, the instance will show up in the remote target area, and you can inspect it.
You then get a very flexible console that allows you to view and alter the current state of any part of the game. gameattributes is found at:
window[0].__idleon_cheats__["com.stencyl.Engine"].engine.gameAttributes.h
For me this is helpful as I can more easily evaluate what's going on, check the types of variables etc test executing new code on the fly much more clearly than relying solely on the fairly limited functions available via the injector console
I did the same mistake like 2 months ago I was like fuck it nevermind, then I was like meh let me search and see through all pages if anyone else made the mistake and GOD DAMN ! yep same exact mistake and that fixed it for me too hahaha
you saved two people bud
Who is online
Users browsing this forum: kaneqc, Locke_Smithy, Micrologist, modifiedmisfit, PrinnyHero, YandexBot