on *:text:*:#pre: {
if ($nick == PRE) && ($1- == $remove($1-,FOREiGN,NUKED,MViD,XXX)) && ($1- != $remove($1-,X264,GAMES,BLURAY)) {
noop $tip(BTNPRE,PRE:,$1-,300)
}
}
Original post from here down: Doesn't work:
Code:
on *:text:*:#pre: {
if ($nick === PRE) && (X264|GAMES|BLURAY isin $1-) && (FOREiGN|NUKED|MViD !isin $1-) {
noop $tip(BTNPRE,PRE:,$1-,300)
}
}
Does work:
Code:
on *:text:*:#pre: {
if ($nick === PRE) && (X264 isin $1-) && (FOREiGN !isin $1-) {
noop $tip(BTNPRE,PRE:,$1-,300)
}
}
I am trying to alter this simple popup to better suit my needs. All i need it to figure out how to make multiple words work with isin !insn statements?(not sure of the definition).