Skip to main content

Text Commands

Text commands manipulate text. To join text, you simply user the + operator.

FORMAT: Any symbol (see below examples)


DEFINITIONS:

  • Operator: < >= > >= !=

EXAMPLE 1:

show "Hello, " + "how " + "are you?"

Returns the text "Hello, how are you?".

EXAMPLE 2:

$rowname = "Shot" + " " + #'team1'
show $rowname

This will return the text "Shot Team1" ("Team 1" being the button name of the button with the ID "team_1").