- Joined
- Jun 1, 2009
- Messages
- 137
Greetings everyone!
After recent patch 2.0 came out, the text messages and multiboard strings no longer display a real variable. Formatted real aint working too.
Any idea how to fix that?
My best thought is to split a real number into 2 integers and dot between them, but I hope there is some new elegant feature I don't know yet.
here some example:

After recent patch 2.0 came out, the text messages and multiboard strings no longer display a real variable. Formatted real aint working too.
Any idea how to fix that?
My best thought is to split a real number into 2 integers and dot between them, but I hope there is some new elegant feature I don't know yet.
here some example:
-
Untitled Trigger 001
-

Events
-


Time - Elapsed game time is 0.20 seconds
-
-

Conditions
-

Actions
-


Multiboard - Create a multiboard with 1 columns and 1 rows, titled TEST.
-


Multiboard - Show (Last created multiboard)
-


Multiboard - Set the display style for (Last created multiboard) item in column 1, row 1 to Show text and Show icons
-


Multiboard - Set the icon for (Last created multiboard) item in column 1, row 1 to UI\Feedback\Resources\ResourceGold.blp
-


Multiboard - Set the text for (Last created multiboard) item in column 1, row 1 to 0
-


Multiboard - Maximize (Last created multiboard)
-


Set VariableSet MB = (Last created multiboard)
-
-
-
Untitled Trigger 002
-

Events
-


Time - Every 0.50 seconds of game time
-
-

Conditions
-

Actions
-


Set VariableSet R = (R + 0.12)
-


Set VariableSet S = (String(R))
-


Game - Display to (All players) the text: (Real = + S)
-


Multiboard - Set the text for MB item in column 1, row 1 to S
-
-
-
Untitled Trigger 002
-

Events
-


Time - Every 0.50 seconds of game time
-
-

Conditions
-

Actions
-


Set VariableSet R = (R + 0.12)
-


Set VariableSet S = (String((Integer(R))))
-


Game - Display to (All players) the text: (Real = + S)
-


Multiboard - Set the text for MB item in column 1, row 1 to S
-
-

