- Joined
- Feb 6, 2014
- Messages
- 2,466
Is it possible to have another DisplayTextToPlayer to display within the same line as the prior DisplayTextToPlayer used. Example I want to make this:
result into:
12
not:
1
2
JASS:
call DisplayTextToPlayer(GetLocalPlayer(), 0, 0, 60, "1")
<call some other functions>
call DisplayTextToPlayer(GetLocalPlayer(), 0, 0, 60, "2")
result into:
12
not:
1
2