Shortest Trip to Earth (Cheat Request)
- WarStalkeR
- Expert Cheater
- Posts: 123
- Joined: Fri Mar 03, 2017 6:58 am
- Reputation: 33
Re: Shortest Trip to Earth (Cheat Request)
Good part: developers removed IL2CPP and now you can see what is hidden in the Assembly-CSharp.dll, there is even entire class "Cheatcodes" but it is never called on its own and I have no idea how trigger it. Implementing "Cheatcodes cheats = new Cheatcodes()" via dnSpy as it seems has no effect.
Re: Shortest Trip to Earth (Cheat Request)
I know what AoB is, But I don't know how to search for that code. When I open the memory viewer and go to search, not sure what to do from there. Usually end up making CE crash.WintermuteX wrote: ↑Sun Aug 18, 2019 7:02 pmThe skills of your crew is represented by a longword (4 bytes) in this order:
Repair
Bridge
Sensor
Gunnery
Shield
Fire Ext
Handweapon
Gardening
Science
Warp
You can search for this AoB:
00 00 00 00 80 16 C6 2B 46 02 00 00 00 00 00 00 00 00 00 00 ?? 00 00 00 ?? 00 00 00 ?? 00 00 00 ?? 00 00 00 ?? 00 00 00 ?? 00 00 00 ?? 00 00 00 ?? 00 00 00 ?? 00 00 00 ?? 00 00 00
And replace it (via select all in the results, right click and choose "change value of selected addresses") by:
00 00 00 00 ?? ?? ?? ?? ?? ?? 00 00 00 00 00 00 00 00 00 00 0A 00 00 00 0A 00 00 00 0A 00 00 00 0A 00 00 00 0A 00 00 00 0A 00 00 00 0A 00 00 00 0A 00 00 00 0A 00 00 00 0A 00 00 00
This will give you skillevel 10 in everything, also in recruitable crewmembers which are already generated in the game.
EDIT: OK, I learned now the bytes "80 16 C6 2B 46 02" are changing with every game start. SO, search for the skills from one crew member (please look at the skill order! Repair is the FIRST skill in memory!) and look up those bytes first, replace my lines accordingly and you are good to go.
My goal is to edit my characters stat/skills, but I don't want all of them to be at 10.
Re: Shortest Trip to Earth (Cheat Request)
Hi sir..helo all..can any one please update the table please..game been updated..sir
-
- Expert Cheater
- Posts: 168
- Joined: Tue May 02, 2017 3:25 pm
- Reputation: 71
Re: Shortest Trip to Earth (Cheat Request)
Its easy to find needed addresses by groupscan or even mono dissector. But i have no idea how to make it simply editableMorcaster wrote: ↑Mon Aug 19, 2019 11:27 pmI know what AoB is, But I don't know how to search for that code. When I open the memory viewer and go to search, not sure what to do from there. Usually end up making CE crash.WintermuteX wrote: ↑Sun Aug 18, 2019 7:02 pmThe skills of your crew is represented by a longword (4 bytes) in this order:
Repair
Bridge
Sensor
Gunnery
Shield
Fire Ext
Handweapon
Gardening
Science
Warp
You can search for this AoB:
00 00 00 00 80 16 C6 2B 46 02 00 00 00 00 00 00 00 00 00 00 ?? 00 00 00 ?? 00 00 00 ?? 00 00 00 ?? 00 00 00 ?? 00 00 00 ?? 00 00 00 ?? 00 00 00 ?? 00 00 00 ?? 00 00 00 ?? 00 00 00
And replace it (via select all in the results, right click and choose "change value of selected addresses") by:
00 00 00 00 ?? ?? ?? ?? ?? ?? 00 00 00 00 00 00 00 00 00 00 0A 00 00 00 0A 00 00 00 0A 00 00 00 0A 00 00 00 0A 00 00 00 0A 00 00 00 0A 00 00 00 0A 00 00 00 0A 00 00 00 0A 00 00 00
This will give you skillevel 10 in everything, also in recruitable crewmembers which are already generated in the game.
EDIT: OK, I learned now the bytes "80 16 C6 2B 46 02" are changing with every game start. SO, search for the skills from one crew member (please look at the skill order! Repair is the FIRST skill in memory!) and look up those bytes first, replace my lines accordingly and you are good to go.
My goal is to edit my characters stat/skills, but I don't want all of them to be at 10.
Re: Shortest Trip to Earth (Cheat Request)
Game is out from EA.
Requesting a table with (at least) inf hull/crew hp & resources options.
Requesting a table with (at least) inf hull/crew hp & resources options.
-
- Cheater
- Posts: 46
- Joined: Sun Oct 29, 2017 10:20 am
- Reputation: 8
Re: Shortest Trip to Earth (Cheat Request)
Use "Array of Byte" in the scan. First look for a skill set of one of your crew members, it will be simply longword (4 bytes) values from left to right WITH EXCEPTION of Repair which is the FIRST value.Morcaster wrote: ↑Mon Aug 19, 2019 11:27 pmI know what AoB is, But I don't know how to search for that code. When I open the memory viewer and go to search, not sure what to do from there. Usually end up making CE crash.
My goal is to edit my characters stat/skills, but I don't want all of them to be at 10.
So lets say these are your crewmembers skills:
Repair = 4
Bridge = 1
Sensor = 1
Gunnery = 2
Shield = 3
Fire Ext = 1
Handweapon = 1
Gardening = 1
Science = 1
Warp = 1
Then you would search for Array of Bytes with the Value:
00 00 00 00 ?? ?? ?? ?? ?? ?? 00 00 00 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 02 00 00 00 03 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00
In the found memory address your simply replace the skill values (04,01,01,02,03,01,01,01,01,01) with the values you like.
This is again extra explanation for the rest of my post, it's useful for mass changes:
If you note the bytes you find where you searched with a wildcard (the ?? values), than you can search for every crew member and generated crew member by using this:
00 00 00 00 XX XX XX XX XX XX 00 00 00 00 00 00 00 00 00 00 ?? 00 00 00 ?? 00 00 00 ?? 00 00 00 ?? 00 00 00 ?? 00 00 00 ?? 00 00 00 ?? 00 00 00 ?? 00 00 00 ?? 00 00 00 ?? 00 00 00
Where XX are the bytes which are resembled by the ?? in the first scan. This bytes change every time you restart the game exe.
Works like a charm and CE shouldn't crash or anything.
Re: Shortest Trip to Earth (Cheat Request)
Oh wow..er hi..there..can the great table maker ..or any one..update this nice game..the game look tough..too
Re: Shortest Trip to Earth (Cheat Request)
open it with dnSpy, search for HelpPanel, change the following method
to
now everytime you open close the help with F1 the ship and crew will be healed.
Code: Select all
public void Close()
{
UnityEngine.Object.Destroy(base.gameObject);
}
Code: Select all
public void Close()
{
UnityEngine.Object.Destroy(base.gameObject);
Ship ship = PerFrameCache.FindFlagship(Ownership.Owner.Me);
if (ship != null)
{
ship.Heal(ship.MaxHealth - ship.Health);
foreach (Crewmember crewmember in PerFrameCache.CachedCrewmembers)
{
if (crewmember != null && crewmember.Ownership.GetOwner() == Ownership.Owner.Me)
{
crewmember.Heal(crewmember.MaxHealth - crewmember.Health);
}
}
}
}
You cannot instantiate like that, it should be invoked by some event but dnSpy is not a good tool for finding references or maybe they were all removed on public releases, anyway for what I can see if it's called cheats may enabled by simply typing sinsalapinImplementing "Cheatcodes cheats = new Cheatcodes()" via dnSpy as it seems has no effect.
Re: Shortest Trip to Earth (Cheat Request)
@nomefinto
Thanks for the method, works well.
But a proper table will be better)
Thanks for the method, works well.
But a proper table will be better)
-
- What is cheating?
- Posts: 1
- Joined: Sat Aug 10, 2019 6:43 pm
- Reputation: 0
Re: Shortest Trip to Earth (Cheat Request)
Any update on a new table?
Re: Shortest Trip to Earth (Cheat Request)
new table for v1.0.10 ?
Re: Shortest Trip to Earth (Cheat Request)
v1.0.10 bump
-
- Cheater
- Posts: 37
- Joined: Thu Sep 05, 2019 8:11 am
- Reputation: 4
Re: Shortest Trip to Earth (Cheat Request)
New table for 1.0.11 possible please ? Thanks in advance
- Lord Blade
- Expert Cheater
- Posts: 1377
- Joined: Thu Mar 09, 2017 7:52 am
- Reputation: 132
Re: Shortest Trip to Earth (Cheat Request)
Can we please get a working table for the current version?
Also, has anyone figured out how to edit the deflection/evasion of our ship? Setting both to 100% would be pretty much god mode.
Also, has anyone figured out how to edit the deflection/evasion of our ship? Setting both to 100% would be pretty much god mode.
- Lord Blade
- Expert Cheater
- Posts: 1377
- Joined: Thu Mar 09, 2017 7:52 am
- Reputation: 132
Re: Shortest Trip to Earth (Cheat Request)
Also, would one of you uber hackers be able to figure out a way to modify modules in slots (or perhaps in the cargo hold)?
Basically some way of selecting an item, then using the CE table to get a dropdown of other items to change it into? Sort of like with other games?
Basically some way of selecting an item, then using the CE table to get a dropdown of other items to change it into? Sort of like with other games?
Who is online
Users browsing this forum: Aries, Google [Bot], Google Adsense [Bot], jenya.khaki, osenbeichan