You can rename any command. Lets say you are using the command ::smm::gui::set very often. Just rename it to ::gset, if you like.
Example: |
---|
# set the gui-variable a ::smm::gui::set a 1 ::rename ::smm::gui::set ::gset # now you can easily set the gui-variable a ::gset a 1 |
Example: |
---|
::rename ::smm::gui::set gset
# now you can easily set the gui-variable a
gset a 1
|
Here follow the descriptions of existing SSL-scripts.
Example: |
---|
# load the SSL-script alias ::smm::file syseval alias # now add the alias ga for "get all" alias gac get all corpse # remove it unalias gac # use it with variables alias ga { get all $args } alias gb { get $arg0 from $arg1 } # examples during mudding: gac ; # -> get all corpse ga ; # -> get all ga corpse ; # -> get all corpse gb "small sword" bag ; # -> get small sword from bag |