/help raw events
$1- is the replied information.
raw 203:*:echo -a $1-
Paste that in your remotes and figure which part you need.
If you only needed $2 from the reply, you could do this...
raw 203:*: {
set %var $2
}
or if you only needed $3 from the reply, you could do this...
raw 203:*: {
set %var $3
}
or if you wanted to keep all of the information...
raw 203:*: {
set %var $2-
}