This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.
For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.
Old posts that have not been replied to for several years.
-
s
sfmortal
Post
by sfmortal »
exists a command for eggdrop as "/amsg" for mIRC?
-
caesar
- Mint Rubber
- Posts: 3778
- Joined: Sun Oct 14, 2001 8:00 pm
- Location: Mint Factory
Post
by caesar »
Nope, you must do it using something like this:
Code: Select all
foreach chan [channels] {
putserv "PRIVMSG $chan :your text goes here"
}
Once the game is over, the king and the pawn go back in the same box.
-
R
Relisysuk
Post
by Relisysuk »
i know this is problary old but i need a little help pls
i would like something simlar to this but with one chan removed so it dont msg that chan can this be done ????
if i just confused u soz but i'm confused aswell still learning the scripting
-
caesar
- Mint Rubber
- Posts: 3778
- Joined: Sun Oct 14, 2001 8:00 pm
- Location: Mint Factory
Post
by caesar »
Code: Select all
foreach chan [channels] {
if {[strlwr $chan] == #mychan} { continue }
putserv "PRIVMSG $chan :your text goes here"
}
Once the game is over, the king and the pawn go back in the same box.