[:parse [/system script get SCRIPT source]]

this is work:

:local run [:parse [/system script get SCRIPT source]]
$run action=create user=username password=password

this is not work,… there is a way to make it work?

:local param "action=create user=username password=password"
:local run [:parse [/system script get SCRIPT source]]
$run $param

The reason that I want it like that because I want get parameters from string by telegram message…

The only solution that I found is:

:local param "action=create user=username password=password"
:global run [:parse [/system script get SCRIPT source]]
:execute "\$run $param"

There is a better way?!