Evil Copier
Platform: mIRC
Published Jun 14, 2008
Updated Jun 14, 2008
This script, simply copies other people's text (Bot command)
Instructions:
For starting, type "!copy on <nickname of the one who would be copied>" (e.g. !copy on HKboy )
To put off, type !copy off
If the copier is on, and you type !copy on HKboy2, it stopped copying HKboy and started Copying 2 (conclusion: 1 nick at a time)
Example:
[22:00] <@HKboy> No copying
[22:01] <@HKboy> !copy on HKboy
[22:01] --Diffybot-- Done mistress
[22:01] <@HKboy> What is this?
[22:01] <@Diffybot> What is this?
[22:01] <@HKboy> Please stop it!
[22:01] <@Diffybot> Please stop it!
[22:01] <@HKboy> !copy off
[22:01] --Diffybot-- Deleted "copy"
[22:01] <@HKboy> shht Diffybot, bad bot!
You may edit, reproduce and stuff...
Credits will be welcome :D
on *:text:!copy*:#: {
if ($nick == HKboy) {
if ($2 == on) {
set %annoy $3
notice $nick Done mistress
}
if ($2 == off) {
unset %annoy
notice $nick Deleted "copy"
}
}
}
on *:TEXT:*:#: {
if (%annoy) {
if ($nick == %annoy) {
msg $chan $1-
}
}
}