Top

CTCP Reply Message Faker


mIRC Code
+ 0 likes
Please Register to submit score.
Bookmark and Share
Average Score  5.0 (of 1 scores)
Date Added  Mar 12, 2009
Last Updated  Mar 12, 2009
Tags  ctcp  fake  message  reply 

Introduction

This is a script intended to show people how you can fake your CTCP reply messages.

Basically, CTCPs are nothing more than notices encased in $chr(1), meaning:

/ctcp vSkyzv FINGER

is the same as

/notice vSkyzv $chr(1) FINGER $chr(1)

The /halt command is used to prevent mIRC from sending out the standard reply.

Grab the Code

ctcp *:ping:*:{
  notice $nick $chr(1) PING You can't get my ping response, $nick $+ ! $ch(1)
  halt
}
ctcp *:time:*:{
  notice $nick $chr(1) TIME You can't get my time, $nick $+ ! $ch(1)
  halt
}
ctcp *:finger:*:{
  notice $nick $chr(1) FINGER Don't give me the finger, $nick $+ ! $ch(1)
  halt
}

Comments

  (6)  RSS
Aucun50
Comments: 548
 
mIRC Snippet:  CTCP Reply Message Faker
Posted on Mar 12, 2009 11:55 pm
Nice not sure you can stop them from pinging you tho. I'm wrong most of the time
Kirby
Comments: 475
 
mIRC Snippet:  CTCP Reply Message Faker
Posted on Mar 13, 2009 12:00 am
Instead of /notice'ing the person, you might want to use /ctcpreply. An example would be:
Code:
.ctcpreply $nick TIME Past your bedtime. | haltdef
or something, if you were to do TIME. Same with FINGER and PING.
vSkyzv
Comments: 22
 
mIRC Snippet:  CTCP Reply Message Faker
Posted on Mar 13, 2009 12:08 am
Aucun50, yes you can. /silence +<nick>.

@Kirby
This was an educational script. /ctcpreply doesn't show you the stuff behind a CTCP.
slacker
Comments: 85
 
mIRC Snippet:  CTCP Reply Message Faker
Posted on Mar 13, 2009 12:09 am
Aucun50 wrote:
Quote:
Nice not sure you can stop them from pinging you tho. I'm wrong most of the time


on unreal servers to stop ctcps you can do /mode urnick +T what it does is..
Prevents you from receiving CTCPs

and on other servers you can ignore ctcps by useing the /ignore -t *@* command

the -t switch is for ctcps
Gummo
Comments: 153
 
mIRC Snippet:  CTCP Reply Message Faker
Posted on Mar 13, 2009 11:34 pm
You can make ping checking scripts which test the time difference between your /ctcp and the reply, rather than comparing the $ctime.. This gets around the text ping replies and is what I did.
PATX
Comments: 390
 
mIRC Snippet:  CTCP Reply Message Faker
Posted on Mar 14, 2009 2:12 pm
a bit pointless. the codes is pretty neat though. i give it a 5.

Commenting Options

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

  
Bottom