Star Valor

Upload your cheat tables here (No requests)
shsgrizzly
What is cheating?
What is cheating?
Posts: 2
Joined: Tue Apr 18, 2023 2:40 pm
Reputation: 0

Re: Star Valor

Post by shsgrizzly »

Doesn't work on newest version please update

How to use this cheat table?
  1. Install Cheat Engine
  2. Double-click the .CT file in order to open it.
  3. Click the PC icon in Cheat Engine in order to select the game process.
  4. Keep the list.
  5. Activate the trainer options by checking boxes or setting values from 0 to 1

zh0so
Noobzor
Noobzor
Posts: 7
Joined: Sat Aug 27, 2022 5:49 pm
Reputation: 3

Re: Star Valor

Post by zh0so »

Made my own balance tweaks to csharp for 2.0.7D:
On every ship: Cargo x2 passangers +2.

Player: Difficulty increased: enemies have more hp, armor and damage,
skillpoints x2 per level and experience x0.2, and get 100 skill reset points.

Crewmembers get x4 experience, quests reward more of the level than blindy shooting.
You will have a max of 100 of 123 skill points at level 50 but getting there will take longer and be more in line with grinding gear.

Leadership changed from +10 to +50 fleet points to make 100 fleet points in total before other bonuses.

I reasoned that any extra weapon or equipment space is overkill for the game since crafting weapons is the best way to fight as even a shuttle can kill everything with big weapons or more equipment.
I removed cooling x2 too again makes the game too easy.

Password:
fearlessrevolution
Attachments
Assembly-CSharpedited.7z
(412.44 KiB) Downloaded 202 times

Chikan01
What is cheating?
What is cheating?
Posts: 1
Joined: Wed Sep 28, 2022 4:55 pm
Reputation: 0

Re: Star Valor

Post by Chikan01 »

Table update plz

Ongchubandao
What is cheating?
What is cheating?
Posts: 1
Joined: Sun May 14, 2023 8:35 am
Reputation: 0

Re: Star Valor

Post by Ongchubandao »

can you edit me to +5000 weapon slots, + 10000 Epuip slots, +100000 cargo I want to try new gameplay

Sicaa
What is cheating?
What is cheating?
Posts: 2
Joined: Tue Mar 16, 2021 12:54 pm
Reputation: 0

Re: Star Valor

Post by Sicaa »

B4rb4ros wrote:
Fri Sep 02, 2022 6:47 pm
Is any of the Table Wizards able to check and update attached table to the current game Version ?
I was quite enjoying it as you could edit the crews with it.

Thanks a lot in advance.
Any chance someone could take a look at the quoted comment's table and update it please? Thanks!

Narinjas
What is cheating?
What is cheating?
Posts: 2
Joined: Mon Feb 20, 2023 5:05 pm
Reputation: 0

Re: Star Valor

Post by Narinjas »

Soon™ the Star Valor 2.0.8 will be live (currently in beta) and it will be a sizable update, and I guess 1 month (4-5 weeks) after the patch updates will stop, and we can safely update the C.E.Table? Please?

Fallstar
What is cheating?
What is cheating?
Posts: 2
Joined: Wed Dec 22, 2021 2:34 pm
Reputation: 5

Re: Star Valor

Post by Fallstar »

Version 2.0.8 modify in 2023/07/09
On player ship:
Cargo x3
passangers +2
weapon cooling x2.
weapon space x2
equipment space x2
Skill point x3
Exp earn x 2
Leadership bouns + 50

Modify with dnSpy.

Code: Select all

// CargoSpace modify
//Method : SpaceShip.CalculateShipStats, line 2690
//Change 1f->3f
this.cs.cargoSpace = Mathf.CeilToInt((float)this.cs.cargoSpace * (3f + PChar.SKMod(33)));
//You can modify line 2694 for easy play as well

// Passanger modify
//Method: SpaceShip.CalculateShipStats, line 2684
this.cs.passengerSpace = shipModel.data.passengers;
//to 
this.cs.passengerSpace = shipModel.data.passengers + 2;

// Weapon modify
// Method: ShipStats.ApplyCharacter , line 407
weaponCooling *= 1f + PChar.SKMod(20);
//to
weaponCooling *= 2f + PChar.SKMod(20);

// Weapon space x2 and equipment space x2
// Method: SpaceShip.CalculateShipStats , line 2708, Add this line
this.shipData.weaponSpace *= 2f;
this.shipData.equipmentSpace *= 2;

// Player modify
// Method: PlayerCharacter
// Starting skillpoints , Line 943, from 3 to 10
public int skillPoints = 10;
// Line 958, from 1 to 100
public int resetSkillsPoints = 100;

//Method: PlayerCharacter.ResetSkills , line 341, set when reset skill
this.skillPoints = this.level;
//to
this.skillPoints = this.level*3;

// this.skillPoints++; , line 369
this.skillPoints++;
// to
this.skillPoints+=3;


// EXP modify
// Method: PChar.EarnXP , line 279, crew exp
float num = amount * 1.2f;
// to 
float num = amount * 2.4f;

//Line 254 , play exp multi
PChar.Char.currXP += amount;
// add
amount*=2;
PChar.Char.currXP += amount;

// For Leadership skill line 72 in Pchar:
num += 10;
// to 
num += 50;
Follow zh0so's guide and update
zh0so wrote:
Thu Dec 15, 2022 8:27 pm
Made my own balance tweaks to csharp for 2.0.6n:
On every ship: Cargo x2 passangers +2, weapon cooling x2.

Player: Difficulty increased: enemies have more hp, armor and damage, skillpoints x3 per level and experience x0.2 Crewmembers get x2 experience,quests give about 20% of level.
You will max skills at level 41 but getting there will take longer and be more in line with grinding gear.

Leadership changed from +10 to +50 fleet points to make 100 fleet points in total before other bonuses.

I reasoned that any extra weapon on equipment space is overkill for the game since crafting weapons is the best way to fight as even a shuttle can kill everything with big weapons or more equipment.


To edit the game In dnSpy edit Assembly-CSharp from Star Valor_Data\Managed then open {} and scroll to subject:
Password: fearlessrevolution
Assembly-CSharp.v2.0.8.Edited.7z
Password: fearlessrevolution
(421.88 KiB) Downloaded 252 times

zh0so
Noobzor
Noobzor
Posts: 7
Joined: Sat Aug 27, 2022 5:49 pm
Reputation: 3

Re: Star Valor

Post by zh0so »

Made my own balance tweaks to csharp for 2.0.8:
On every ship: Cargo x2 passangers +2.

Player: Difficulty increased: enemies have more hp, armor and damage,
skillpoints x2 per level and experience x0.2, and get 1000 skill reset points.

Crewmembers get x4 experience, quests reward more of the level than blindy shooting.
You will have a max of 100 of 123 skill points at level 50 but getting there will take longer and be more in line with grinding gear.

Leadership changed from +10 to +50 fleet points to make 100 fleet points in total before other bonuses.

I reasoned that any extra weapon, equipment space, cooling or other extras is overkill for the game since crafting weapons is the best way to fight as even a shuttle can kill everything with big weapons or more equipment.

For cargospace on every ship:

In spaceship line 2682:
this.cs.cargoSpace = shipModel.data.cargoSpace;
change to
this.cs.cargoSpace = shipModel.data.cargoSpace * 2;

Password:
fearlessrevolution
Attachments
Assembly-CSharpedited.7z
(421.91 KiB) Downloaded 201 times

sonicwinghero
Cheater
Cheater
Posts: 40
Joined: Sun Feb 25, 2018 3:28 pm
Reputation: 9

Re: Star Valor

Post by sonicwinghero »

Can we get an update to 2.1? Thanks.

zh0so
Noobzor
Noobzor
Posts: 7
Joined: Sat Aug 27, 2022 5:49 pm
Reputation: 3

Re: Star Valor

Post by zh0so »

Made my own balance tweaks to csharp for 2.1:
On every ship: Cargo x2 passangers +2.

Player: Difficulty increased: enemies have more hp, armor and damage,
skillpoints x2 per level and experience x0.2, and get 1000 skill reset points.

A lower experience gain is actually very helpfull in this game in terms of achieving difficult perks,
other bonuses and overall experience.
Leveling too fast with work against you in this game and will spike the difficulty very quickly.

Crewmembers get x4 experience, quests reward more of the level than blindy shooting.
You will have a max of 100 of 123 skill points at level 50 but getting there will take longer and be more in line with grinding gear.

Leadership changed from +10 to +50 fleet points to make 100 fleet points in total before other bonuses.

Fiddled with sector size generation a bit for an increase on the lower end,
and increased graveyard chances and tehno shop chances when generating sectors.
Icreased the chanches of finding bosses in certain sectors.

I did other similar edits but can't remenber now, will edit when I do.
I skipped the ship blueprint drop edit because it will totally debalance the game.

I reasoned that any extra weapon, equipment space, cooling or other extras is overkill for the game since crafting weapons is the best way to fight as even a shuttle can kill everything with big weapons or more equipment.

For cargospace on every ship:

In spaceship about line 2682:
this.cs.cargoSpace = shipModel.data.cargoSpace;
change to
this.cs.cargoSpace = shipModel.data.cargoSpace * 2;

Password:
fearlessrevolution
Attachments
Assembly-CSharpedited.7z
(427.14 KiB) Downloaded 190 times

Hore
What is cheating?
What is cheating?
Posts: 1
Joined: Thu Sep 13, 2018 5:00 pm
Reputation: 0

Re: Star Valor

Post by Hore »

Is there a particular setting in dnSpy you got to use or is there a mode that makes browsing Assembly-CSharp.dll easier?
I tried using the search function to find lines but it's all so segmented and without anything I can recognize.
Picture for how it looks to me, I'm probably doing something completely wrong. [Link]

User avatar
Dickincorp
Cheater
Cheater
Posts: 35
Joined: Thu Dec 13, 2018 9:14 pm
Reputation: 23

Re: Star Valor

Post by Dickincorp »

Though i do like the *.dll
A cheat table has settings i can turn on or off .. Any chance we are getting an updated one or has this become a mod thread?
... just saying... It does say "Tables" in the board category index :P (if you're smart enough to edit a .dll, you're smart enough to start a thread 8-) . Maybe bring the *.dll discussion there? )

zh0so
Noobzor
Noobzor
Posts: 7
Joined: Sat Aug 27, 2022 5:49 pm
Reputation: 3

Re: Star Valor

Post by zh0so »

Made my own balanced tweaks to Csharp for v2.1.1b and the next one with every ship tweaked in css.
But you can do It yourself from now on since you complain you can check out other mods that totally ruin the game for you.

UnknownPlayer
What is cheating?
What is cheating?
Posts: 1
Joined: Sat Oct 14, 2023 9:03 pm
Reputation: 0

Re: Star Valor

Post by UnknownPlayer »

just updated to 2.1.2 hoping you update this :)

gorsan
Expert Cheater
Expert Cheater
Posts: 118
Joined: Fri Mar 10, 2017 5:54 pm
Reputation: 13

Re: Star Valor

Post by gorsan »

star valor 2.1.2
Attachments
Assembly-CSharp.rar
(480.44 KiB) Downloaded 195 times

Post Reply

Who is online

Users browsing this forum: 4HeadedHydra, AhrefsBot, AJonesy, Arbitality, Baidu [Spider], Darkedone02, Derionis, Google [Bot], Google Adsense [Bot], itsft, jenovalive, Suko_harem, tizz781, tox