I have an object_1 with instance variables. Each instance variable is set to 100 for 100%
so 10 variables at 100%, over time these will decrease randomly, how do I get the overall condition of all 10 variables?
I want an output of this object_1 overall condition is 98%.
EDIT: Got it,
make a instance variable called overall, and set every tic to set the overall to variable1 + variable2 + variable3
then you can display it with a set text to round(overall*0.1)&"%"