About this snippet
Overview
Put this snippet in your Channel Popup section of mIRC. Feel free to edit it however you want.
You must be a host or above to use the broadcast feature and it would be useful for announcing birthdays, anniversaries ect.
Enjoy! :D
You must be a host or above to use the broadcast feature and it would be useful for announcing birthdays, anniversaries ect.
Enjoy! :D
Channel Options
.Broadcast to Channel: { var %c # | set %bcmsg $?"Please enter your broadcast message for the room."
if (%bcmsg !== $null) { set %yn $?!"Send to channel? - %bcmsg "
}
if (%yn == $false) { halt
}
if (%yn == $true) { .raw NOTICE %c %c : %bcmsg
}
unset %bcmsg | unset %yn
}
