Variables in Non-Slash Commands

Mponthepc

Big Gnobody
Joined
Mar 16, 2006
Messages
96
Reaction score
1
Points
0
Ok so...

Code:
/declare ToonName local
/varset ToonName Mrguy
/tell ${ToonName} Hello

Result: You tell Mrguy 'Hello'

/declare ToonName local
/varset ToonName Mrguy
[COLOR="DarkRed"];[/COLOR]tell ${ToonName} Hello

Result: Could not find player ${ToonName}

Is there a way to send variables in a command to things that do not start with /, such as a universal chat server ;tell.
 
Last edited by a moderator:
Ok so...

Code:
/declare ToonName local
/varset ToonName Mrguy
/tell ${ToonName} Hello

Result: You tell Mrguy 'Hello'

/declare ToonName local
/varset ToonName Mrguy
[COLOR="DarkRed"];[/COLOR]tell ${ToonName} Hello

Result: Could not find player ${ToonName}

Is there a way to send variables in a command to things that do not start with /, such as a universal chat server ;tell.
Try: /docommand ;tell ${ToonName} Hello

See what that does.

htw