UseFormatTags(enable)
False to UseFormatTags(). Once text format tags are disabled,
no more on-the-fly text formatting will take place.
Note that TextOut() also allows you to locally disable on-the-fly text formatting
by setting the UseFormatTags tag to True in the optional table argument. See TextOut for details.
True or False indicating whether text formatting should be enabled
NPrint("[b][u][i]These format tags will not be ignored![/i][/u][/b]")
UseFormatTags(False)
NPrint("[b][u][i]These format tags will be ignored![/i][/u][/b]")
The code above demonstrates disabling of format tags.