Outward

Outward

Not enough ratings
Outward Mod: Increased carry weight, No Mana Burn, Infinite Sprint, ect.
By Nathan
This is a basic guide on how to use the mod I created for myself. Your welcome to use it if you want a easier game play experience with Outward. I am not responsible for any game glitches this may cause. I also am very aware some will strongly disagree with changing the game's rules.
   
Award
Favorite
Favorited
Unfavorite
Outward Mod: Increased carry weight, No Mana Burn, Infinite Sprint, ect.
This mod edits the "Assembly-CSharp.dll" file located in the "Managed" folder. Before overwriting this file please make a backup copy of the ""Assembly-CSharp.dll" file in case any game complications are experienced. I am NOT responsible for any game play problems this file may cause.

I made it for myself and I am simply offering it to those who wish to use it.

This mod changes the following things:
  • Removes the stamina cost of sprinting so that you can sprint indefinitely (For easier travel)
  • Increased the speed at which you sprint from (1.75) to (2.0).
  • Stamina regenerates slightly faster.
  • Removed burnt mana when sleeping.
  • Increases all bags and pocket carry weight by 500.
  • Mana now regenerates at a steady rate.

Backup and replace:
(Game Installation Directory)\steamapps\common\Outward\Outward_Data\Managed\Assembly-CSharp.dll


Here is the modded DLL[/url] file:
https://drive.google.com/open?id=1SNZs-301hhpeJ2ANMOmacjcBi-UHY5W1


I used DnSpy to edit the dll files. In order to mod the file yourself basic c# knowledge is recommend.



11 Comments
Wh1stl3 Jan 25, 2020 @ 11:13am 
Game crashes at startup any time i edit/overwrite the Assembly dll file
DEVILDICE Apr 5, 2019 @ 11:11am 
Can you make a tutorial on where you found the values in the file? I assume this dll will change when the game updates and we're going to need to re-edit it. Unless you keep this up to date, that is. Thanks!
wolfknight Apr 4, 2019 @ 11:01pm 
You should upload this to the nexus. They already got a few mods but nothing like this.
Melynx Apr 4, 2019 @ 3:24pm 
Beta mod
Urek Apr 4, 2019 @ 1:16am 
How do I remove the mana and stamina changes? Only want the weight and maybe sprint speed
Zemog95 Apr 2, 2019 @ 12:28pm 
does anyone know if you can do online with this if both people do it?
iicycube Apr 1, 2019 @ 8:39pm 
Okay thanks, hopefully you can find line on "arrow" as well cause i already done on bullet reload with infinite ammo..
Nathan  [author] Apr 1, 2019 @ 8:29pm 
line 707 in "itemcontainer", because i wanted it to effect pocket size too. line 528 in "bag" might be better for just backpack. there is a search function in dnspy. helpful to search for capacity, bag, container ect.
iicycube Apr 1, 2019 @ 7:48pm 
Hey Horned what the base line for just the backbag u did? Can share with me?
Nathan  [author] Apr 1, 2019 @ 5:05pm 
That is tough to answer, I think a few videos would be enough if someone understood the logic behind programming (variables, functions ect.). I am a novice myself and only took a few online courses in C# as a hobby long ago. I did notice that the character stats affect also the enemies.If you wanted to add to the movement speed a quick a dirty way would be to add a float value into the function. Changing the base variable would be the "proper" way but they are protected and I haven't had much success changing them. Someone with better C# knowledge would know more.

For example you could change this:
public float MovementSpeed
{
get
{
return this.m_movementSpeed.CurrentValue * this.m_speedModifier.CurrentValue;
}
}

Into this:
public float MovementSpeed
{
get
{
return this.m_movementSpeed.CurrentValue * (this.m_speedModifier.CurrentValue + 2f);
}
}