Macro/Keybind Mod script editor
new-script
Documentation
  • Actions
  • Variables
  • Parameters
  • REPL Commands
  • Iterators
  • Events
  • Code Samples
  • Editor Features
  • Other
Random Challenge
Usage
Randomly selected
LCASE(<input>,[&output])
Converts the input string to lower case and stores it in output.

Returns the output.
Example
&string = "HeLLo wORLd"

LCASE(%&string%,&variant1)
&variant2 = LCASE(%&string%)

// Both output "hello world"
LOG(%&variant1%)
LOG(%&variant2%)
Editor