always
The always command is activated on every frame, and is used when there isn't any other if command in a block.



"if(always)"


No arguments.



And example of the always command used in a script is as follows...




The following script functions as a pseudo-timer, and will increase the variable by 1 every frame.


if(always)
{
then(changevar,timer,+,1)
}