mIRC Home    About    Download    Register    News    Help

Print Thread
#173429 25/03/07 10:47 AM
D
DuXxXieJ
DuXxXieJ
D
Code:
ON *:VERSION:{
  ctcp $nick reply ((DuckSkaIRC v2.3))
}



How do i reply?

Php Code:

€ gaapz (DP-IRC@chaterz-4C2AF908.speed.planet.nl) is nu bekend als Duck_Power €
.:12:52:. * gaapz is now known as Duck_Power
 


I see this when i use:

Code:
ON ^1:NICK:{
  echo -a $comchan($nick,) 10€11 $nick 11(10 $+ $address $+ 11)12 is nu bekend als $newnick 10€
}


(2 problems)

Last edited by DuXxXieJ; 25/03/07 10:54 AM.
#173432 25/03/07 10:54 AM
H
HuMoR
HuMoR
H
ctcp 1:VERSION:.ctcpreply $nick ((DuckSkaIRC v2.3))

Cya!.-

#173433 25/03/07 10:55 AM
D
DuXxXieJ
DuXxXieJ
D
tyz for the ctcp

#173434 25/03/07 10:56 AM
D
DuXxXieJ
DuXxXieJ
D
Erm:

Php Code:

.:12:55:. [Duck_Power VERSION reply]: mIRC v6.21 Khaled Mardam-Bey
-
.:12:55:. [Duck_Power ((DuckSkaIRC reply]: v2.3))
 

#173436 25/03/07 10:58 AM
H
HuMoR
HuMoR
H
ctcp ^1:VERSION:.ctcpreply $nick ((DuckSkaIRC v2.3)) | halt

#173437 25/03/07 10:58 AM
D
DuXxXieJ
DuXxXieJ
D
With that Nick, when somebody else is changing his nick, i see:

€ americontje|AFK (PATat@viandel.online.Behave.yourself.or...Com) is nu bekend als americontje €

but when I do it, i see:

€ Duck_Power (DP-IRC@chaterz-4C2AF908.speed.planet.nl) is nu bekend als gaapz €
.:12:52:. * Duck_Power is now known as gaapz

#173438 25/03/07 11:01 AM
D
DuXxXieJ
DuXxXieJ
D
VersioN:

.:13:00:. [Duck_Power VERSION reply]: mIRC v6.21 Khaled Mardam-Bey
-
.:13:00:. [Duck_Power ((DuckSkaIRC reply]: v2.3))

i still see that

#173439 25/03/07 11:05 AM
H
HuMoR
HuMoR
H
Search another ctcp reply of version that you had and delete it

#173440 25/03/07 11:08 AM
D
DuXxXieJ
DuXxXieJ
D
I've nothing, only 2 scripts with menu nicklist and ON ^1:OP etc.

That ctcpreply is in a new file, nothing is in it only that ctcpreply

#173441 25/03/07 11:10 AM
H
HuMoR
HuMoR
H
ON ^1:NICK:{
echo -a $comchan($nick,) 10€11 $nick 11(10 $+ $address $+ 11)12 is nu bekend als $newnick 10€ | halt
}

Cya!.-

Edit:

Originally Posted By: DuXxXieJ
I've nothing, only 2 scripts with menu nicklist and ON ^1:OP etc.

That ctcpreply is in a new file, nothing is in it only that ctcpreply


I said on all ctcp replys, all files...


Last edited by HuMoR; 25/03/07 11:11 AM.
#173443 25/03/07 11:14 AM
D
DuXxXieJ
DuXxXieJ
D
I've only 3 files ¬¬ With no ctcp reply's

#173445 25/03/07 11:18 AM
H
HuMoR
HuMoR
H
ON ^1:NICK:{
echo -a $comchan($nick,) 10€11 $nick 11(10 $+ $address $+ 11)12 is nu bekend als $newnick 10€ | halt
}

ctcp ^1:VERSION:.ctcpreply $nick ((DuckSkaIRC v2.3)) | halt

Or replace | halt with | return but halt works fine if you haven't anothers ctcpreply or on NICK.

Cya!.-

#173482 25/03/07 05:56 PM
Joined: Oct 2004
Posts: 8,061
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Oct 2004
Posts: 8,061
Originally Posted By: HuMoR
ctcp ^1:VERSION:.ctcpreply $nick ((DuckSkaIRC v2.3)) | halt


You cannot remove the mIRC version reply, so halting does nothing. Also, you aren't telling mIRC what you are replying to. And, your format of the CTCP event was missing the location part.

Use:
Code:
ctcp *:VERSION:*: .ctcpreply $nick version ((DuckSkaIRC v2.3))


Riamus2 #173493 25/03/07 06:19 PM
H
HuMoR
HuMoR
H
Originally Posted By: Riamus2
Originally Posted By: HuMoR
ctcp ^1:VERSION:.ctcpreply $nick ((DuckSkaIRC v2.3)) | halt


You cannot remove the mIRC version reply, so halting does nothing. Also, you aren't telling mIRC what you are replying to. And, your format of the CTCP event was missing the location part.

Use:
Code:
ctcp *:VERSION:*: .ctcpreply $nick version ((DuckSkaIRC v2.3))




It's rare, works for me... But if you say...

Cya!.-

#173496 25/03/07 06:24 PM
Joined: Oct 2004
Posts: 8,061
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Oct 2004
Posts: 8,061
/help /ctcpreply

That will give you the correct format.

Riamus2 #173498 25/03/07 06:31 PM
H
HuMoR
HuMoR
H
Originally Posted By: Riamus2
/help /ctcpreply

That will give you the correct format.


I believe, but i have these exactly code and works...

Code:
ctcp ^1:VERSION:.ctcpreply $nick VERSION No Response to CtcpReply! | halt


Php Code:
--> CTCP [HuMoR] VERSION
Respuesta CTCP VERSION de HuMoR : No Response to CtcpReply!
 

And the version of mirc doesnt show...
Like i said, maybe for my mirc version...

#173500 25/03/07 06:34 PM
Joined: Oct 2004
Posts: 8,061
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Oct 2004
Posts: 8,061
Really old versions did seem to allow that. What version do you use?

Riamus2 #173502 25/03/07 06:39 PM
H
HuMoR
HuMoR
H
Originally Posted By: Riamus2
Really old versions did seem to allow that. What version do you use?


Mirc 6.17

Cya!.-

#173508 25/03/07 07:10 PM
H
HuMoR
HuMoR
H
I download 6.21 version.
I put Mirc.exe on C:\Mirc2.
I run mirc and put:

Code:
ctcp ^1:VERSION:.ctcpreply $nick VERSION No Response to CtcpReply! | halt


And works.

I try the $nick isop # on join and works to...
Riamus2 maybe you have anothers scripts (Ctcp's) and dont work properly

Cya!.-

#173519 25/03/07 07:30 PM
Joined: Oct 2004
Posts: 8,061
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Oct 2004
Posts: 8,061
Clean copy of mIRC shows both of those do not work in 6.21 (as they shouldn't).

Think about it. If someone joins a channel, *when* do they get opped? Are they opped already when they join, or are they opped after they join (even if it's only a second or 2 after). If you see a +o mode, then it happens after they have joined the channel.


Link Copied to Clipboard