Today I discovered that the following code does not work in mIRC 6.17

on *:part:%room : { echo -s test }

When I replace %room with the actual roomname it does work. Thus it seems like it doesn't replace the variablename with its value.

However,
on *:join:%room { echo -s test }
does work.

*Workaround could be
on *:part:*: {
if ( !$istok(%room,$chan,44) ) { return }
echo -s test
}

Last edited by snabbi; 03/07/06 11:43 AM.