Star Valor
0 of 0

File information

Last updated

Original upload

Created by

Mike1238

Uploaded by

Mike1238

Virus scan

Safe to use

Tags for this mod

About this mod

This is a mod for Star Valor version 2.0.9c that doubles the skill points gained, works on old saves by doing a skill reset. AFAIK it will not work when the game is updated.

Permissions and credits
Replace the Assembly-CSharp.dll file with the one from this mod (example of install location C:\Program Files (x86)\Steam\steamapps\common\Star Valor\Star Valor_Data\Managed)

Found instructions, thank you Red Wizard(talik) and EvolutionKills, 
To update in the future here are the current steps

Get dnSpy from git hub

Open dnSpy

drag in the Assembly-CSharp dll file into the left side of dnSpy

Click on the little arrow beside Assembly-CSharp in dnSpy
then again on the little arrow next to Assembly-CSharp.dll

Click the arrow next to what looks like { } -

scroll down until you find PlayerCharacter, and left click on it (should bring a bunch of code looking text on the right window)

go to edit, then edit class and click on that, it will bring up a new window that will allow you to edit lines

***Keep a close eye on the formatting, especially the spaces!*** also the line locations have changed in the past
There are three places to change, all in PlayerCharacter class: 

function LevelUP:
Line 369:
Change
this.skillPoints ++;
to
this.skillPoints += 2;

function ResetSkills:
Line 341:
Change
this.skillPoints = this.level;
to
this.skillPoints = this.level * 2;

Line 943:
Change
public int skillPoints = 1;
to
public int skillPoints = 2;

When you are done making those changes hit compile, and then go to file and SAVE