Playing around with lapper again, trying to get private messages to work.
Tried
So then tried
However, what does work, is
Seems long winded to me.
Where am I going wrong with | (or) expression?
Tried
Register MsgAction("ho" | "hoho" | "hohoho",MA_santa);Didn't work.
Sub MA_santa()
privMsg( $Nickname . "^1, you sound like Santa. " );
EndSub
So then tried
Register MsgAction("ho | hoho | hohoho",MA_santa);Didn't work either.
Sub MA_santa()
privMsg( $Nickname . "^1, you sound like Santa. " );
EndSub
However, what does work, is
Register MsgAction("ho",MA_santa);
Register MsgAction("hoho",MA_santa);
Register MsgAction("hohoho",MA_santa);
Sub MA_santa()
privMsg( $Nickname . "^1, you sound like Santa. " );
EndSub
Seems long winded to me.
Where am I going wrong with | (or) expression?