For example i want to change value for tactics

There is CT for this game to change attribute, but no personality.
haskav wrote: ↑Tue May 30, 2017 6:59 amFound the value.
Using Player base address from CT by Zanzer
PES 2017 CT
There are 2 value (byte):
Player base address +c6 - for Charisma and Passion
Player Base address +c7 - for Tecnique and Tactics
I need one address for one personality, but for the love of God, I can't play with binary to split between personality (bit, length etc).
Example:
Hover my player, in this case Morgan De Sanctis to find player base address.
Address: 7B062308
Address for charisma and pasion: 7B062308 + C6 = 7B0623CE
Address for technique and tactics: 7B062308 + C7 = 7B0623CF
For example i want to maximize my tactics personality.
Address : type : value
7B0623CF : byte : 31
Result:
Address : type : value
7B0623CF : byte : 255
Result:
How to split this address using binary type?
I just want to maximize tactics ,not both technique and tactics.