I have a global variable where certain numbers and texts are added from different actions like:
Set Global1 to Global1&object1.name&object1.points&object1.weight etc...
In the global they show up like this:
NAME 12 50
When I create an action like:
Object2.points Add to Object1.points no changes happen Object1 values from the Global1.
Another set of actions are like that:
Add Object1.points to Global2 and It is working good. Numbers are calculated as totals. But how do I make them to be added to the first global as well? They do not add... How do I make math work on values already written in the 1st string? without having to reset it...
In simple words, how to add a value to an instance variable who's value is already in a string and make this change in that value in the string , not only to the object in general? I just need to keep their order, during adding values, that's why I am asking such a thing...