Top

mimic


mIRC Code
+ 0 likes
Please Register to submit score.
Bookmark and Share
Average Score  0.0 (of 0 scores)
Date Added  Sep 18, 2007
Last Updated  Sep 18, 2007
Tags  mimic 

Introduction

to mimic your target nick.What ever he/she say u will repeat it.Juz for fun.Grab this code and paste at your remote alt+R

Grab the Code

#mimic on
on *:TEXT:*:#: {
  if ($nick == %nk) {
    /msg $chan $1-
  }
}
on *:action:*:#: {
  if ($nick == %nk) {
    describe $chan $1-
  }
}
#mimic end
menu Menubar {
  -=Mimic Nick=-
  .$iif(%n == On,$style(1)) [On] :set %nk $$?"Enter Mimic Nick" | set %n On | echo -a 12Your Mimic Nick is On and The Nick is %nk
  .$iif(%n == Off,$style(1)) [Off] :unset %nk | set %n Off | echo -a 12Your Mimic Nick is Now Off
}

Comments

  (8)  RSS
token
Comments: 24
 
mIRC Snippet:  mimic
Posted on Sep 18, 2007 9:05 pm
you could use a $group(#mimic).status to see if it is on or off, try using $iif($group(#mimic).status = on, Off,On):$iif($group(#mimic).status = on, disable #mimic, enable #mimic). remove the / before /msg $chan and there you are it is pretty basic though, perhaps make a variable to check if the words the nick says is not allowed (i.e swear kickers) and the nick could easily flood you out, perhaps add timers?
mountaindew
Comments: 1,826
 
mIRC Snippet:  mimic
Posted on Sep 19, 2007 2:22 pm
i would add a menu nicklist, so you can right click someone and click mimic
xredxthornsx
Comments: 25
 
mIRC Snippet:  mimic
Posted on Sep 19, 2007 5:25 pm
i edited the menu alittle bit and added a nicklist here i'll post it for you
Code:
 menu Menubar,Channel {
  -=Mimic Nick=-
  .$iif(%n == On,$style(1)) [On] :set %nk $$?"Enter Mimic Nick" | set %n On | echo -a 8Your Mimic Nick is On and The Nick is %nk
  .$iif(%n == Off,$style(1)) [Off] :unset %nk | set %n Off | echo -a 8Your Mimic Nick is Now Off
}
menu Nicklist {
  -=Mimic Nick=-
  .$iif(%n == On,$style(1)) [On] :set %nk $$1 | set %n On | echo -a 8Your Mimic Nick is On and The Nick is %nk
  .$iif(%n == Off,$style(1)) [Off] :unset %nk | set %n Off | echo -a 8Your Mimic Nick is Now Off
}
xredxthornsx
Comments: 25
 
mIRC Snippet:  mimic
Posted on Sep 19, 2007 5:28 pm
this is a good script i like using it on my friends

Quote:
[05:28:11] <Aerix> with
[05:28:11] <C4K3> with
[05:28:12] <Aerix> sm.
[05:28:12] <C4K3> sm.
[05:28:13] <Aerix> then
[05:28:13] <C4K3> then
[05:28:16] <Aerix> smoff
[05:28:16] <C4K3> smoff
[05:28:18] <Aerix> afterwards.
[05:28:18] <C4K3> afterwards.
[05:28:19] <TropythePecan> lmao.
napa182
Comments: 1,454
 
mIRC Snippet:  mimic
Posted on Sep 19, 2007 10:34 pm
just do it in the nicklist
Code:
on *:TEXT:*:#: {
  if ($nick == %nk) {
    msg $chan $1-
  }
}
on *:action:*:#: {
  if ($nick == %nk) {
    describe $chan $1-
  }
}
menu nicklist {
  .-=Mimic Nick=-
  ..[On]:{ set %nk $1 | echo -a 12Your Mimic Nick is On and The Nick is %nk }
  ..[Off]:{ unset %nk | echo -a 12Your Mimic Nick is Now Off }
}

or what ever
CoReY
Comments: 8
 
mIRC Snippet:  mimic
Posted on Sep 20, 2007 3:23 pm
that my script..ok
Tom445566
Comments: 10
 
mIRC Snippet:  mimic
Posted on Nov 29, 2007 1:10 am
How do i turn it on.. lol
Tom445566
Comments: 10
 
mIRC Snippet:  mimic
Posted on Dec 1, 2007 5:03 am
Nvm figured it out

Commenting Options

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

  
Bottom