Originally Posted By: nomer2007
Quote:
"Joined" would trigger *Join*, but "Join" would not trigger *Joined*.


Code:
on *:text:*join*:#:


is the same as

Code:
if *join* iswm $1-


re-join , joining , join or joined text will be triggered


yea thats where i would do on *:text:joined:#:{ code }

text matches if only contains this word
text* matches if text starts with this word
*text matches if text ends with this word
*text* matches if text contains this word anywhere

or... if ($1 == joined)
or... if (joined isin $1) which is the basically same

Last edited by r34dm4n; 06/12/07 09:34 AM.