Scripts
To make any of these work, you must put them into your remote (alt+r).
How can I identify to NickOP when I press F2?
To identify to nickop when you press f2, use this piece of code:
alias f2 {
if (!%password) {
set %password $$?*='Password?'
}
/nickserv identify %password
}
How do I calculate how long it is to my next birthday?
alias next_bd {
return $duration($abs($calc($ctime($1) - $ctime)))
}
To use this, type: //say $next_bd(09/05/2003)
How do I thank someone for giving/taking voice?
; PURPOSE: thank someone for voicing you
on *:VOICE:#: {
if ($vnick == $me) {
msg $chan Thanks for the voice $nick
}
}
; PURPOSE: ask where you + went
on *:DEVOICE:#: {
if ($vnick == $me) {
msg $chan Where'd my + go $nick $+ ?
}
}
The first one will thank someone for giving you voice. The second one will thank them for devoicing you.




















