PDA

View Full Version : [Fixed] broadcasted messages error


oldhouse
09-14-2005, 08:41 AM
Sometimes in my eggdrop window i get an error regarding ioBinfo(admin) .. no such array ...

Looking at iobanana.tcl i found this
################################################## ##############################
# BROADCAST TO ALL ADMINS #
################################################## ##############################
proc ioB:broadcast {from cmd text} {
global ioBinfo
foreach admin $ioBinfo(admin) {


but variable is called ioBinfo(admins) so iI guess u need to add an "s" on that line. (notice the difference between admin and admins).

Harm
09-14-2005, 01:42 PM
That's right. Thank you.