Simply format it into your data string by converting it to a string like so:
Code:
bBooleanVariable ? "1" : "0"
or
Code:
bBooleanVariable ? "true" : "false"
then something like this:
Code:
format(szData, charsmax(szData), "%s %s %s", szString, szString, bBooleanVariable ? "1" : "0")
__________________