I have 4 integer properties (M, Sm, F, and O). I don’t want to “add” these integers, I want to combine them into a number sequence.
M = 1
Sm = 2
F = 3
O = 4
Then I want property “Master” to combine them as “1234” or “1.2.3.4” and not the addition of those properties, which would be 10. I am trying to accomplish this using logic bricks, not Python, if possible.
What you are talking about is joining these numbers into a list, or a string (you used quotes). You would have to use a small amount of Python for either of those.