Top

Mimic System

Please Register to submit score.
Average Score  3.5
Scores Submitted  2
Date Added  Jul 19, 2007
Last Updated  Jul 27, 2007
Tags  fun  mimic  timer 

Introduction

This Is A Simple Mimic Script But With A Timer It Will MimiC Someone For 2 Minutes Or However Long You Put Into It : )
UPDATED UPDATED UPDATED UPDATED
Now You Can Type !mimic <nick> <seconds> Seconds Being Where You Type How Long They Get Copied In Seconds

Grab the Code

Comments

  (21)  RSS
Dizzlenub
Comments: 51
 
mIRC Snippet:  Mimic System
Posted on Jul 19, 2007 7:05 pm
hey you mind if i use your timer idea for my mimic script?
GuardianDemon
Comments: 52
 
mIRC Snippet:  Mimic System
Posted on Jul 19, 2007 7:37 pm
Witch Part? The $3 Or Just The Timer Itself Where I Have Them At Or What, I DOnt Care As Long As You Send The Finished Work To Me So I Can Evaluate It For The Hell Of It But Yea No Problem Go Ahead.
napa182
Comments: 797
 
mIRC Snippet:  Mimic System
Posted on Jul 19, 2007 7:40 pm
How about adding an on Action to it?
just a thought =)
GuardianDemon
Comments: 52
 
mIRC Snippet:  Mimic System
Posted on Jul 19, 2007 10:00 pm
And By Action You Mean..... Lol Sorry I Do Not Understand What You Mean Please Enlighten Me.
napa182
Comments: 797
 
mIRC Snippet:  Mimic System
Posted on Jul 19, 2007 11:05 pm
toss in
on *:action:*:#: {
if ($nick == %mimic) {
describe $chan $1-
}
}
so it mimics the /me command
GuardianDemon
Comments: 52
 
mIRC Snippet:  Mimic System
Posted on Jul 19, 2007 11:22 pm
Oh So If They Do An Action Itll Still Copy What They Say?
Ok...
napa182
Comments: 797
 
mIRC Snippet:  Mimic System
Posted on Jul 19, 2007 11:29 pm
yep and on .. on *:TEXT:*!mimic*:#:{
put on *:text:!mimic*:#:{ samething for the other one
on *:TEXT:!unmimic*:#:{
napa182
Comments: 797
 
mIRC Snippet:  Mimic System
Posted on Jul 19, 2007 11:31 pm
but all and all nice littile mimic script =)
GuardianDemon
Comments: 52
 
mIRC Snippet:  Mimic System
Posted on Jul 19, 2007 11:32 pm
Lmao I DOnt Know What You Want Me To Change There But Tell Me And I Will Oh And Can Ya Tell Me How To Put Only Ops Can Turn It Off?
napa182
Comments: 797
 
mIRC Snippet:  Mimic System
Posted on Jul 19, 2007 11:41 pm
on *:TEXT:!mimic*:#:{
if (($nick isop #) && ($2 == $null)) {
/msg $chan 2[G]15iVe Me A NiCk To MiMiC.
halt
}
elseif ($nick isop #) {
/set %mimic $2
/msg $chan 2 $+ [H]15eY $2 I WiLl CoPy WhAtEvEr YoU SaY.
/msg $chan 2 [I]15 WiLl NoW MiMiC $2 FoR $3 SeCoNdS
timer 1 $3 msg $chan 2 %mimic [I]15s No LoNgEr BeInG MiMiCeD YoUr TiMe RaN OuT.
timer 1 $3 /unset %mimic
}
}
on *:TEXT:!unmimic*:#:{
if ($nick isop #) {
/msg $chan 2 $+ %mimic [A]15ww CmOn WhY YoU GoTtA Do ThAt.
/unset %mimic
}
}
on *:TEXT:*:#:{
if ($nick == %mimic) {
Describe $chan $1-
}
}
on *:Action:*:#:{
if ($nick == %mimic) {
Describe $chan $1-
}
}
GuardianDemon
Comments: 52
 
mIRC Snippet:  Mimic System
Posted on Jul 19, 2007 11:48 pm
K Well Ty For That Well If Its Not To Mch Can You make It Where If Your Not Op It Says Sorry $nick You DO Not Have The Power To Do That And How Do I MiMic More Than One Person? Or How Can I Make It DO That?
Dizzlenub
Comments: 51
 
mIRC Snippet:  Mimic System
Posted on Jul 19, 2007 11:48 pm
Alright, I copied just the timer..and mine is Mimic v2.4 xD
It's here on Hawkee.
napa182
Comments: 797
 
mIRC Snippet:  Mimic System
Posted on Jul 19, 2007 11:57 pm
on *:TEXT:!mimic*:#:{
if (($nick isop #) && ($2 == $null)) {
/msg $chan 2[G]15iVe Me A NiCk To MiMiC.
halt
}
elseif ($nick isop #) {
/set %mimic $2
/msg $chan 2 $+ [H]15eY $2 I WiLl CoPy WhAtEvEr YoU SaY.
/msg $chan 2 [I]15 WiLl NoW MiMiC $2 FoR $3 SeCoNdS
timer 1 $3 msg $chan 2 %mimic [I]15s No LoNgEr BeInG MiMiCeD YoUr TiMe RaN OuT.
timer 1 $3 /unset %mimic
}
elseif ($nick !isop #) {
msg $chan Sorry $nick You DO Not Have The Power To Do That
}
}
on *:TEXT:!unmimic*:#:{
if ($nick isop #) {
/msg $chan 2 $+ %mimic [A]15ww CmOn WhY YoU GoTtA Do ThAt.
/unset %mimic
}
elseif ($nick !isop #) {
msg $chan Sorry $nick You DO Not Have The Power To Do That
}
}
on *:TEXT:*:#:{
if ($nick == %mimic) {
Describe $chan $1-
}
}
on *:Action:*:#:{
if ($nick == %mimic) {
Describe $chan $1-
}
}
napa182
Comments: 797
 
mIRC Snippet:  Mimic System
Posted on Jul 19, 2007 11:59 pm
il get back to ya later about the other im working on my own script right now =)
napa182
Comments: 797
 
mIRC Snippet:  Mimic System
Posted on Jul 20, 2007 1:38 am
oh on the on text part you have it
on *:TEXT:*:#:{
if ($nick == %mimic) {
Describe $chan $1-
}
}
Change it to .....Only If you want it like that

on *:TEXT:*:#:{
if ($nick == %mimic) {
msg $chan $1-
}
}

napa182
Comments: 797
 
mIRC Snippet:  Mimic System
Posted on Jul 20, 2007 1:41 am
oh and how about adding a timer off on the !unmimic
napa182
Comments: 797
 
mIRC Snippet:  Mimic System
Posted on Jul 27, 2007 1:53 pm
isee you fixed the text part but now the action is msg $chan $1-..use describe $chan $1- ..... =)
napa182
Comments: 797
 
mIRC Snippet:  Mimic System
Posted on Jul 27, 2007 3:12 pm
(^_^)
Code:
on *:TEXT:*:#:{
  if ($nick == %mimic) {
    msg $chan $1-
  }
}
on *:Action:*:#:{
  if ($nick == %mimic) {
    describe $chan $1-
  }
}
mountaindew
Comments: 1,422
 
mIRC Snippet:  Mimic System
Posted on Aug 21, 2007 1:17 pm
Code:

on *:TEXT:*:#:{
  if ($1 == !mimic) && ($nick isop $chan) {
    if (!$2) {
      msg $chan 2[G]15iVe Me A NiCk To MiMiC.
      msg $chan !mimic <nick> <secs>
      halt
    }
    elseif ($3 isnum 1-) {
      set %mimic $2
      set %mimicnick $nick
      msg $chan 2 $+ [H]15eY $2 I WiLl CoPy WhAtEvEr YoU SaY.
      msg $chan 2 [I]15 WiLl NoW MiMiC $2 FoR $3 SeCoNdS
      timer 1 $3 msg $chan 2 %mimic [I]15s No LoNgEr BeInG MiMiCeD YoUr TiMe RaN OuT.
      timer 1 $3 unset %mimic %mimicnick
    }
    elseif ($nick !isop $chan) {
      msg $chan YoU dOnT hAvE tHe PoWeR tO dO tHaT!
    }
  }
  elseif ($1 == !unmimic) {
    if ($nick == %mimicnick) {
      msg $chan 2 $+ %mimic [A]15ww CmOn WhY YoU GoTtA Do ThAt.
      unset %mimic
    }
    else msg $chan 2[Y]15oU wErEnT tHe NiCk ThAt SaId !MiMiC
  }
  if ($nick == %mimic) {
    msg $chan $1-
  }
}
on *:Action:*:#:{
  if ($nick == %mimic) {
  Describe $chan $1-
  }
}


i wrote this b4 i came to this, i saw u wrote it in xdaemon's profile...and then i saw ppl wanted it to be if nick is op'd, i added that too, and made it less messy. also, i made it so only the person that did !mimic can do !unmimic
mountaindew
Comments: 1,422
 
mIRC Snippet:  Mimic System
Posted on Aug 21, 2007 1:21 pm
sorry,

Code:

on *:TEXT:*:#:{
  if ($1 == !mimic) {
    if (!$2) {
      msg $chan 2[G]15iVe Me A NiCk To MiMiC.
      msg $chan !mimic <nick> <secs>
      halt
    }
    elseif ($3 isnum 1-) {
      set %mimic $2
      set %mimicnick $nick
      msg $chan 2 $+ [H]15eY $2 I WiLl CoPy WhAtEvEr YoU SaY.
      msg $chan 2 [I]15 WiLl NoW MiMiC $2 FoR $3 SeCoNdS
      timer 1 $3 msg $chan 2 %mimic [I]15s No LoNgEr BeInG MiMiCeD YoUr TiMe RaN OuT.
      timer 1 $3 unset %mimic %mimicnick
    }
  }
  elseif ($1 == !unmimic) {
    if ($nick == %mimicnick) {
      msg $chan 2 $+ %mimic [A]15ww CmOn WhY YoU GoTtA Do ThAt.
      unset %mimic
    }
    else msg $chan 2[Y]15oU wErEnT tHe NiCk ThAt SaId !MiMiC
  }
  if ($nick == %mimic) {
    msg $chan $1-
  }
}
on *:Action:*:#:{
  if ($nick == %mimic) {
    Describe $chan $1-
  }
}

i mesd up a little, thats right ^^
ZiX
Comments: 52
 
mIRC Snippet:  Mimic System
Posted on Nov 30, 2007 9:23 pm
LOL
well done Aaron.

Please Register or Login to start posting comments.
Bottom