This is the AMP version of this page.
If you want to load the real page instead, click this text.

Help! public bool

power2020202020

Solid & Active Platinian
hello I have a doubt I activated the invincibility in my mod menu I managed to activate it with true bool I just wanted to increase the damage of my strike blow and I put the same true bool and nothing changed would it be another value to gain blow damage?

// RVA: 0x14D7F88 Offset: 0x14D7F88 VA: 0x14D7F88
public bool get_Invincible() { } XEX 01 00 A0 E3 1E FF 2F E1 = VALUE 1 Also = True used for bool

worked perfectly


// RVA: 0x1A35108 Offset: 0x1A35108 VA: 0x1A35108
public bool get_strike() { } XEX 01 00 A0 E3 1E FF 2F E1 = VALUE 1 Also = True used for bool

nothing changed
 
You can't do it that way.

get_strike method returns true or false, not a damage value of int or float. You need to find a method that returns int or float, if there isn't one then it's possible that it's a field offset instead, which you can't modify by hex patching, you'd need to hook it.