How do I join 4 game prop (int) into a single game prop (int)

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.

Thanks in advance for any help!

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.

Thanks for the quick help, but I found a variation that worked! I used a Property Assign Actuator value of M+"."+Sm+"."+F+"."+O

This took the four integer properties above and combined as the string I needed, “1.2.3.4”.

As always, thanks for your help!

Really?0o Wow, I was 100% it was impossible to do that. Well, that’s pretty cool to know, thanks for sharing.