Cross Code V1.0

Ask about cheats/tables for single player games here
edale
Expert Cheater
Expert Cheater
Posts: 101
Joined: Sun Feb 03, 2019 11:54 pm
Reputation: 33

Re: Cross Code V1.0

Post by edale »

KS212 wrote:
Fri Mar 01, 2019 2:55 am
@edale

Can you please do a version that merges Shirokaido's and beater/Shinon's scripts into one, if possible?
So...

-Consumables do not decrease
-Trade does not decrease items
-100% drop rate from enemies
-Ignore SP
-100% drop rate from plants
-Overheat Reduction (modifier changed from 50 to 500, so it both gains and drains VERY slowly)
-Invincibility (you'll still go critical, but won't die)
-10 times the EXP and credit gained

That's what you want? You want my newly discovered Overheat Elimination it it, or the Overheat Reduction?

KS212
Expert Cheater
Expert Cheater
Posts: 1113
Joined: Fri Mar 03, 2017 5:29 pm
Reputation: 136

Re: Cross Code V1.0

Post by KS212 »

Yup, basically everything all in one, and yes to the Overheat Elimination as well :)

edale
Expert Cheater
Expert Cheater
Posts: 101
Joined: Sun Feb 03, 2019 11:54 pm
Reputation: 33

Re: Cross Code V1.0

Post by edale »

KS212 wrote:
Fri Mar 01, 2019 5:09 am
Yup, basically everything all in one, and yes to the Overheat Elimination as well :)
Here you go.
Attachments
game.compiled.All-In-One.zip
(719.35 KiB) Downloaded 48 times

KS212
Expert Cheater
Expert Cheater
Posts: 1113
Joined: Fri Mar 03, 2017 5:29 pm
Reputation: 136

Re: Cross Code V1.0

Post by KS212 »

edale wrote:
Fri Mar 01, 2019 5:46 am
KS212 wrote:
Fri Mar 01, 2019 5:09 am
Yup, basically everything all in one, and yes to the Overheat Elimination as well :)
Here you go.
Awesome, thank you very much, you're a champ!

User avatar
Lord Blade
Expert Cheater
Expert Cheater
Posts: 1346
Joined: Thu Mar 09, 2017 7:52 am
Reputation: 132

Re: Cross Code V1.0

Post by Lord Blade »

So I've been trying to find the values in CE, using x2 the listed value (for money for example) and searching 4 byte as people have mentioned. But I'm not finding any values.

edale
Expert Cheater
Expert Cheater
Posts: 101
Joined: Sun Feb 03, 2019 11:54 pm
Reputation: 33

Re: Cross Code V1.0

Post by edale »

Lord Blade wrote:
Sat Mar 09, 2019 6:42 pm
So I've been trying to find the values in CE, using x2 the listed value (for money for example) and searching 4 byte as people have mentioned. But I'm not finding any values.
I believe it's 2x +1 the value. So if looking for gold, and you have 100 gold, you'd search for 201.

I could be wrong though.

User avatar
Lord Blade
Expert Cheater
Expert Cheater
Posts: 1346
Joined: Thu Mar 09, 2017 7:52 am
Reputation: 132

Re: Cross Code V1.0

Post by Lord Blade »

Tried that, still nothing.

Techno665
Cheater
Cheater
Posts: 46
Joined: Sun Mar 10, 2019 2:07 am
Reputation: 58

Re: Cross Code V1.0

Post by Techno665 »

Lord Blade wrote:
Sun Mar 10, 2019 1:44 am
Tried that, still nothing.
it weird, after loading CrossCode and Cheat Engine there should be 4 CrossCode Processes, you have to pick the last one in the list (bottom most one).

Then you just need to look up each Value as is, no need to x2 or +1
EXP:
4 Bytes
(If you want to jump to Level 99, once you have finished the tutorial and encounter your first Hedgehag you should be Level 4, find the EXP value in Cheat Engine then change it to 94974, since Hedgehag give you 26 EXP when your level 4, this will jump you to level 99)

Credit:
4 Bytes

HP:
Double
(You will find a few values, one will change your actual HP, the others change the bar underneath your HP, and after changing HP wait a second for the game to catch up, you can't set your HP higher then your current max HP)

Timers:
Double
(For Timers Use Value between and set them 1 second before and 1 after E.g. if it was 5 Seconds, use 4 and 6, don't worry about doing decimals, E.g. if you have 5.23 Seconds just do 4 and 6)

edale
Expert Cheater
Expert Cheater
Posts: 101
Joined: Sun Feb 03, 2019 11:54 pm
Reputation: 33

Re: Cross Code V1.0

Post by edale »

Lord Blade wrote:
Sun Mar 10, 2019 1:44 am
Tried that, still nothing.
Oh, lol, the double+1 thing was for RPG Maker games. My mistake.

User avatar
Lord Blade
Expert Cheater
Expert Cheater
Posts: 1346
Joined: Thu Mar 09, 2017 7:52 am
Reputation: 132

Re: Cross Code V1.0

Post by Lord Blade »

So I grabbed the all in one file, however the money cheat doesn't seem to be working.

edale
Expert Cheater
Expert Cheater
Posts: 101
Joined: Sun Feb 03, 2019 11:54 pm
Reputation: 33

Re: Cross Code V1.0

Post by edale »

Lord Blade wrote:
Mon Mar 11, 2019 9:37 am
So I grabbed the all in one file, however the money cheat doesn't seem to be working.
It works.

Look at your money total, kill one enemy, check the credits it lists you as gaining, then check your total again.

If it reports +16 credits, your total will increase by +160 credits instead.



*edit- OK, I took a closer look at the code and changed it a bit:
The unmodded line of code:

Code: Select all

this.gf = this.gf + a;
'this.gf' is your credits total. 'a' is what you gained by killing an enemy.

Old 10x credits code:

Code: Select all

this.gf = this.gf + a * 10;
This increased the gold earned by 10x, but later in the code, when it polls 'a' to display the credits gained, it'll show the original amount, not the increased one.

My new code:

Code: Select all

a = a * 10
this.gf = this.gf + a;
This way, it'll still give 10x credits, but when it polls 'a' to display the credits gained it will now display the increased amount.

I've only changed this in the all-in-one version atm, I'll update the code for the other versions when the next game update drops.
Attachments
game.compiled.All-In-OneV2.zip
(719.36 KiB) Downloaded 39 times

User avatar
Lord Blade
Expert Cheater
Expert Cheater
Posts: 1346
Joined: Thu Mar 09, 2017 7:52 am
Reputation: 132

Re: Cross Code V1.0

Post by Lord Blade »

Thanks.

So another request, is there some way to cheat the times for the trials?
Or perhaps at the very least get invulnerability? I know that doing the dash thing gives you a few frames of invincibility, would it be possible to tweak the code so that period last vastly longer? Basically do a dodge and get invincibility for like an hour or something?

edale
Expert Cheater
Expert Cheater
Posts: 101
Joined: Sun Feb 03, 2019 11:54 pm
Reputation: 33

Re: Cross Code V1.0

Post by edale »

Lord Blade wrote:
Mon Mar 11, 2019 8:29 pm
Thanks.

So another request, is there some way to cheat the times for the trials?
Or perhaps at the very least get invulnerability? I know that doing the dash thing gives you a few frames of invincibility, would it be possible to tweak the code so that period last vastly longer? Basically do a dodge and get invincibility for like an hour or something?
I'm actually not that good at programming, so finding the code to do that is beyond me. I'm mostly copying and modifying other people's work for these mods. I stumbled on the overheat elimination while trying to find something completely different, lol.

That said, if you're trying to make the trials easier, check out this post:
viewtopic.php?t=7934&start=15#p61311
That file still worked with version 1.0.2-1, I haven't tested it with 1.0.3-2.

What that does is disables the turrets in the trials. The section where you need to dodge a bunch of shots on a small ice-covered island at the end of the second trial will still fire the turrets though.

Actually... I used it for the second trial, never tested to see if it did anything to the first trial...

User avatar
Lord Blade
Expert Cheater
Expert Cheater
Posts: 1346
Joined: Thu Mar 09, 2017 7:52 am
Reputation: 132

Re: Cross Code V1.0

Post by Lord Blade »

That worked. Thanks a ton. I was getting so pissed off at those trials. lol

User avatar
Lord Blade
Expert Cheater
Expert Cheater
Posts: 1346
Joined: Thu Mar 09, 2017 7:52 am
Reputation: 132

Re: Cross Code V1.0

Post by Lord Blade »

So, new aggravation to make a request for. lol

I've got access to the brewing maching. Jeeze that thing is crazy. Keeping high heat, while doing things in time and all that? I'm terrible at it.

Post Reply

Who is online

Users browsing this forum: Google [Bot], Klaud_Born2Die, mildsevenX, tony4rg