How can I go about using
pukename to execute a named script, which has space characters in its name, in the following setup?
Code: Select all
addkeysection "Test" TestKeysection
addmenukey "Give Health" gh
alias gh "pukename Give Health" // <----
defaultbind end gh
Testing that as you see it there doesn't work (unknown script error), since it's trying to execute a script named "Give", not "Give Health". I tried enclosing the name between quotation marks but it didn't work either.
Code: Select all
alias gh "pukename "Give Health"" // This displays the usage of the command
alias gh pukename "Give Health" // Same as above