AddTextComponentFormattedInteger
DocsAddTextComponentFormattedInteger(value, commaSeparated)Parameters
| Name | Type | Description |
|---|---|---|
value | int | The integer to add to the string |
commaSeparated | BOOL | Whether or not to add comma seperators. So if true 1000 would become 1,000. |
Returns
voidThis native does not return a value.
Examples
Official
-- on initialization
AddTextEntry('TEST_LABEL', '€~a~')
-- when drawing
BeginTextCommandThefeedPost('TEST_LABEL')
AddTextComponentFormattedInteger(1000, true)
EndTextCommandThefeedPostTicker(false, true)