Skip to content
TG007 community snippet #85

Simple Room Broadcaster

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

By Winz Added Jun 3, 2019
General ircWx All snippets
mIRC script 11 lines
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
Source code

mIRC script

11 lines · 314 characters
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
}
Community

Comments

Want to join the discussion? Sign in to TG007.
err0rFriday, 29 November, 2019
thanks for submitting smile