Additional Parameters

Here is a full list of additional parameters you can use in X3 MintEclipse:

Text Manipulation

OperatorDescriptionExample
##upper:keyUpperCase converter##upper:$a
##lower:keyLowerCase converter##lower:$a
##reverse:keytext reverser##reverse:$a

Date & Time parameters

OperatorDescriptionExample
##timesecondsreturns python's time.time() returnprt ##timeseconds
##datereturns current date in format %Y-%m-%dprt ##date
##timereturns current time in format %H:%M:%Sprt ##time
##msecreturns current time in millisecondsprt ##time

System based parameters

OperatorDescriptionExample
##uuidreturns a randomly generated uuidreg str example ##uuid
##userreturns the current name of the sys account being usedprt ##user
##hostnamereturn's the hostname prt ##hostname
##platformreturns the platform the client is running onif ##platform == Windows
##osversionreturns the operating system's versionif ##osversion != "10.0.19045"
##cwdreturns current work direcortydelete_dir ##cwd //DONT DO THIS ;-;
##env:keyreturns environment variablesprt ##env:USERNAME

Random value return parameters

OperatorDescriptionExample
##randomreturns a random float valuereg int random ##random*1000
##randintreturns a random integer value between 1 and 100reg int random ##randint
##randboolreturns true or false.if ##randbool == True