Page 1 of 1

Executing custom commands?

Posted: Mon Apr 05, 2004 5:28 pm
by ieatacid
Is there a way to execute a custom command through the config files? For instance, whenever I zone I want to do

Code: Select all

/mycommand myparameter
I tried (in zoned.cfg)

Code: Select all

/docommand "/mycommand myparameter"
but got "could not parse /mycommand myparmamter".

I tried

Code: Select all

/docommand /mycommand myparameter
and got no output in the MQ2 window. So I'm guessing it's working and it's just being executed before it could output to the window or it's not working at all.

Am I doing this correctly or is this just not available at the moment?

Posted: Tue Apr 06, 2004 1:46 am
by Lax
No, it's available.. all config files do is execute standard commands! ;)

/docommand /mycommand is the same as
/mycommand

Posted: Tue Apr 06, 2004 4:22 pm
by ieatacid
Ok, thanks for the reply.