Something very simple like..
on *:TEXT:!find*:#channel: {
if (!$2) {
notice $nick Syntax: !find Item
notice $nick Example: !find Barry
}
else {
if ((%ds.remotesearch == 1) && (!%ds.delay)) {
set %timersec 0
dosearch $nick $2-
close -m $nick
set -u5 %ds.delay 1
}
}
}
Will allow them to use it only once every 5 seconds, change -u5 to make it higher/lower, as you please.
Also are you aware your event works in a CHANNEL yet your CLOSING a private message window?
Eamonn.