Input

Last Modified: 10/16/2021

Gets input from the user.

Arguments

NameTypeRequiredDescription
Prompt String No Text to display before getting user input.
Variable Any Yes The Variable where you want to store the inputted data.

Example

Syntax: Input [<Prompt>], <Variable> [, <Variable> ...n]
    Input "Enter 3 numbers + name: ",a,b,c,name$
    
    Print a,b,c
    Print name$

Remarks

The Input is like a password screen: Press Up and Down to cycle through the characters, button A advances to the next character, button B goes back a character, and button C changes case (when a String Variable is used).

This only works on the first player controller.