Here is a full list of additional parameters you can use in X3 MintEclipse:
Operator | Description | Example |
---|---|---|
##upper:key | UpperCase converter | ##upper:$a |
##lower:key | LowerCase converter | ##lower:$a |
##reverse:key | text reverser | ##reverse:$a |
Operator | Description | Example |
---|---|---|
##timeseconds | returns python's time.time() return | prt ##timeseconds |
##date | returns current date in format %Y-%m-%d | prt ##date |
##time | returns current time in format %H:%M:%S | prt ##time |
##msec | returns current time in milliseconds | prt ##time |
Operator | Description | Example |
---|---|---|
##uuid | returns a randomly generated uuid | reg str example ##uuid |
##user | returns the current name of the sys account being used | prt ##user |
##hostname | return's the hostname | prt ##hostname |
##platform | returns the platform the client is running on | if ##platform == Windows |
##osversion | returns the operating system's version | if ##osversion != "10.0.19045" |
##cwd | returns current work direcorty | delete_dir ##cwd //DONT DO THIS ;-; |
##env:key | returns environment variables | prt ##env:USERNAME |
Operator | Description | Example |
---|---|---|
##random | returns a random float value | reg int random ##random*1000 |
##randint | returns a random integer value between 1 and 100 | reg int random ##randint |
##randbool | returns true or false. | if ##randbool == True |