Top

Sendraw nick randomiser.


mIRC Code
+ 0 likes
Please Register to submit score.
Average Score  0.0
Scores Submitted  0
Date Added  Jul 10, 2008
Last Updated  Jul 10, 2008
Tags  sendraw 
  Bookmark and Share

Introduction

This snippet allows an IRCop with sufficient priveleges on an IRCd with the sendraw module in use or something similar available to speak through random nicks in a given channel, highly useful if a group of opers don't want something attributable to them yet understand idlers may be logging.

Grab the Code

Comments

  (5)  RSS
SHAGGSTaRR
Comments: 2
 
mIRC Snippet:  Sendraw nick randomiser.
Posted on Jul 18, 2008 7:58 am
/*
Sendraw nick randomiser by SHAGGSTaRR

Usage:
/set %sendrand_network network-you're-an-oper-on
/set %sendrand_channel #logged-channel
/set %sendrand_status 1
*/

on 1:load:{
:begin
var %tmp $?!=" $network $active - Run initial setup?"
if (%tmp == $true) {
set %sendrand_network $network
set %sendrand_channel $active
set %sendrand_status 0
}
elseif (%tmp == $false) {
echo -a //set $chr(37) $+ sendrand_network $network
echo -a //set $chr(37) $+ sendrand_channel $active
echo -a //set $chr(37) $+ sendrand_status 0
}
else goto begin
}

alias puppet { sendraw $active :: $+ $1 PRIVMSG $active $2- }

on 1:input:#:{
if (($network == %sendrand_network) && (%sendrand_status > 0)) {
if (($active == %sendrand_channel) && ($left($1,1) != /)) {
puppet $nick($chan, $r(1,$nick($chan,0))) $1-
;Measure how many lines have been spoken with the script:
;inc %sendrand_status
halt
}
;else breakdance
}
}
Fan_Of_Ur_Mom
Comments: 18
 
mIRC Snippet:  Sendraw nick randomiser.
Posted on Aug 20, 2008 1:17 am
alias puppet { sendraw $active :: $+ $1 PRIVMSG $active $2- }

^^^^ Would not work...

alias puppet { sendraw $active :: $+ $1 PRIVMSG $active : $+ $2- }

^^^^ Would work. ;)
Spanky
Comments: 53
 
mIRC Snippet:  Sendraw nick randomiser.
Posted on Aug 20, 2008 1:30 am
>.>
SHAGGSTaRR
Comments: 2
 
mIRC Snippet:  Sendraw nick randomiser.
Posted on Sep 22, 2008 6:03 pm
Fan_Of_Ur_Mom: Both will work, my version doesn't alert Anope services so admins sat in the network LOGCHAN are none the wiser.
DJA14
Comments: 10
 
mIRC Snippet:  Sendraw nick randomiser.
Posted on Sep 29, 2008 4:45 pm
No, SHAGGSTaRR, Fan is right. Your version would only send $2. The colon was missing. His will send $2-.

Please Register or Login to start posting comments.
Bottom