ID:158176
 
macros text guide says to supress a line you have to
\....

I want to suppress a var
text="\[text]" // but this becomes another macros the \[ macro

is there anyway to do this ?
Do you know what "suppressing" lines means?
It means that the text output won't cause the next output to skip to the next line.
usr << "Test.\..."
sleep(10)
usr << ".\..."
sleep(10)
usr << ".\..."
sleep(10)
usr << " Complete!"


This will show "Test... Complete!" after 3 seconds, adding a dot every second.
What exactly should 'suppressing a variable' do?
In response to Kaiochao (#1)
o.o
didnt know that sorry
i meant preventing capitalization
like making the var lower case
In response to Getenks (#3)
What you're looking for is lowertext(), then.
In response to Kaiochao (#4)
ohh I m so dumb nvm
my bad