This script allows you to 1. decide whether its 'enabled' and 2.
most importantly, Notify you when a user joins a channel and remind you to tell them something.
To use:
Load into blank remotes file. (.mrc)
Type /enable #notify when you want to use and right click in a channel and select Notifier. Type in the nick of whom you want to be alerted of, and some details to tell the user. This will then activate a 'tip' which appears in the lower right-hand corner of mIRC (similar to where Windows balloons appear) and will display the details when the user joins. Please ignore the 1 - Unknown Command that appears in the status window, as I have no idea, the script works fine though.
#notify off
...
menu channel {
-
Notifier:/set %join $$?="Enter Nick" | /set %details $$?="Enter Details"
-
}
on *:JOIN:#:{
if ($nick == %join) { $tip(Join,Notification,%join is here %details,10)
/disable #notify
/unset %join
/unset %details }
else { halt }
}
...
#notify end
Note: When the user joins the channel and the 'tip' runs, everything will be cleared and the script will be disabled so errors will not occur. Be sure to repeat the steps above to re-use.
The script is disabled by default, make sure you /enable #notify before useEnjoy