a more complex Send syntax?

Posted by Bonzai on Sun 26 Aug 2007 06:15 PM — 2 posts, 13,473 views.

#0
I want to do a more complex Send. Seomthing like. . .

Send (GetAliasOption("myalias," "match") & "is an alias of mine")


Is there a way to do that? What's the correct syteax? basically I want to be able to send a combination of string within quotes plus other variables obtained from Script commands, like GetAliasInfo, GetTriggerInfo, etc.
USA #1
Send just sends whatever string you have as a parameter. Sending multiple things through a string is as simple as concatenating strings in whatever language you are using.

For Lua:
Send (GetAliasOption("myalias," "match").." is an alias of mine")