Mimic

By DarkWatcher on Oct 15, 2005

Just a mimic thing. Paste it into your remotes, or your bots remotes. When you want to copy someone, type !mimic. When you want to stop the copy type !unmimic.

on *:TEXT:*!mimic*:#:{
  if ($2 == $null) {
    /msg $chan 14Please indicate a nick to mimic. 
    halt
  }
  else {
    /msg $chan 14 $+ $2 is now being copied.
    /set %mimic $2
  }
}
on *:TEXT:*!unmimic*:#:{
  /msg $chan 14 $+ %mimic is not being copied anymore.
  /unset %mimic
}

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

Comments

Sign in to comment.
Sasuke   -  Oct 21, 2005

-_- I made an Easier one, But, I guess it\'s ok.

 Respond  
aaslyfox   -  Oct 20, 2005

This should be limited to only the user being able to use it, as otherwise spam is almost guaranteed. Also there is no need for the \"/\" in the script.

 Respond  
DarthReven   -  Oct 15, 2005

this has been done many times over. try combining your on text events into one using if, elseif, and else

 Respond  
Pariah   -  Oct 15, 2005

missing the last bracket

 Respond  
Noutrious   -  Oct 15, 2005

You should write on:action too :P

 Respond  
Are you sure you want to unfollow this person?
Are you sure you want to delete this?
Click "Unsubscribe" to stop receiving notices pertaining to this post.
Click "Subscribe" to resume notices pertaining to this post.