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.