View Single Post
  #6  
Unread 08-09-2010, 05:16 AM
Zonx's Avatar
Zonx Zonx is offline
A Green Troll
This person is a EQ2Map developer.
Featured
 
Join Date: Dec 2004
Server: Blackburrow
Posts: 2,221
Default

slash commands that take an input value can often be executed two ways...

/do_something_with foo
or
do_something_with='foo'

You might be able to use the later with a variable containing the concatenation.

foo='something' ## 'somethingelsewithspaces'

do_something_with=foo
Reply With Quote