I hope to change the Combatant's status value.
For example, There is the Combatant 'Main' ID = 17

and There is Status Value 'Like' ID =13

I hope to change and show up the Value about Status Value 'Like'(ID =13) of the Combatant name :'Main' (ID = 17).
I tried but it was error.
This is What I wrote...

How can I Get the Combatant by ID?
How can I Get The Combatant ID's specific Status value??
Your first line of code already got you the combatant from the game object:
Combatant target = ORKComponentHelper.GetCombatant(gameObject);
However, you can get a combatant for an ID from a group, e.g. the active player group:
Combatant target = ORK.Game.ActiveGroup.GetMember(ORK.Combatants.Get(17));
But keep in mind that the group can also contain multiple combatants of the same ID.
You can get the status values of the combatant like that, e.g. getting the current value from status value ID 13:
int value = target.Status[13].GetValue();
If you're enjoying my products, updates and support, please consider supporting me on patreon.com!
I could show the Status value at my UI and change the value by script.
I always thank you for your kindness and smartness!!
I could change my status value by script.
but even though I added values to my status value so changed the value's number and effected well,
whenever I got my level up, my status value returned to the number which I set by the level(not added number).
this is the script which I used.
I tried to change by the Status Developments by percent or own Formula
but It desen't work.
How should I do?
I'm so sorry not to know the coding.
target.Status[6].SetBaseValue(value);
If you're enjoying my products, updates and support, please consider supporting me on patreon.com!
I always thank you!!