Top

Andrew's Relay Script


mIRC Code
+ 0 likes
Please Register to submit score.
Bookmark and Share
Average Score  1.8 (of 4 scores)
Date Added  Oct 02, 2005
Last Updated  Oct 13, 2005
Tags  relay 

Description

Very simple relay script. I might make it where you can have a bot turn it on/off. Make sure you change 'chan' to the channel you want the relay script to relay to.

Grab the Code

#relay off
on *:text:*:#:{ 
 .msg 'chan' - $chan - $nick - $1- 
} 
on *:action:*:#:{ 
 .msg 'chan' - $chan - $nick - $1- 
} 
on *:OP:#:{ 
 .msg 'chan' - $chan - $nick - sets mode: +o $opnick 
} 
on *:DEOP:#:{ 
 .msg 'chan' - $chan - $nick - sets mode: -o $opnick 
} 
on *:Voice:#:{ 
 .msg 'chan' - $chan - $nick - sets mode: +v $vnick 
} 
on *:devoice:#:{ 
 .msg 'chan' - $chan - $nick - sets mode: -v $vnick 
} 
on *:ban:#:{ 
 .msg 'chan' - $chan - $nick - sets mode: +b $bnick $banmask 
} 
on *:unban:#:{ 
 .msg 'chan' - $chan - $nick - sets mode: -b $bnick $banmask 
} 
on *:kick:#:{ 
 .msg 'chan' - $chan - $nick - kicks: $knick 
} 
on *:join:#:{ 
 .msg 'chan' - $nick - Joins: - $chan - $fulladdress 
} 
on *:part:#:{ 
 .msg 'chan' - $nick - Parts: - $chan - $fulladdress 
} 
#relay end
menu * {
Relay Script
.On:/enable #relay | echo -a Relay Script On
.Off:/disable #relay | echo -a Relay Script Off
}

Comments

  (7)  RSS
KuTsuM
Comments: 141
 
mIRC Snippet:  Andrew's Relay Script
Posted on Oct 2, 2005 2:26 pm
" .msg 'chan' |$nick| Parts: _($chan)_ $fulladdress "
That won't show the nick or channel, it needs to be
" .msg 'chan' | $+ $nick $+ | Parts: _( $+ $chan $+ )_ $fulladdress "
AndrewMiller17
Comments: 31
 
mIRC Snippet:  Andrew's Relay Script
Posted on Oct 2, 2005 8:51 pm
Fixed.
Bushak
Comments: 4
 
mIRC Snippet:  Andrew's Relay Script
Posted on Oct 2, 2005 10:57 pm
replace your '|' with $chr(125)
anthalus
Comments: 69
 
mIRC Snippet:  Andrew's Relay Script
Posted on Oct 3, 2005 12:20 pm
#relay on at the bottom should be #relay end. Also you forgot a { right after menu *. Also, if it should check to make sure that the nick that is using the relay is in both channels, especially the channel that the info is relayed to, as most channels will not allow msg from outside the channel.
BigBen
Comments: 16
 
mIRC Snippet:  Andrew's Relay Script
Posted on Feb 11, 2007 4:56 pm
instead of useing 'chan' use $chan it works better
BigBen
Comments: 16
 
mIRC Snippet:  Andrew's Relay Script
Posted on Feb 11, 2007 4:57 pm
or have it set to what u want the bot to put it in, like #LogChannel
Halit
Comments: 9
 
mIRC Snippet:  Andrew's Relay Script
Posted on Nov 15, 2009 1:39 pm
Forever Internet relay chat mIRC Script [url="http://www.mircsite.com"]mirc script[/url]

Commenting Options

Register or Login to Hawkee.com or use your Facebook or Twitter account by clicking the corresponding button below.

  

Bottom