mIRC Home    About    Download    Register    News    Help

Print Thread
#128085 20/08/05 06:58 PM
Joined: Aug 2005
Posts: 5
S
Sn1per Offline OP
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
S
Joined: Aug 2005
Posts: 5
hi every one.
i am not very experianced with mIRC but i love it.

i was wondering if i could find an addon or a script any where that could get me peoples version on join.

for example as many scripts have the option when people joins your room u see their IP, i want to see thier version.

e.g.
  »» join SomeOne (~mIRC@some.host.com) [07:55pm]

same way if possible like showing me the version in the room rather than the status window.

can please please some one help coz i really need this.

Many thanks

#128086 20/08/05 08:45 PM
Joined: Dec 2002
Posts: 3,547
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Dec 2002
Posts: 3,547
Do you mean their ident?

Code:
ON ^*:Join:#: {
  echo 4 -s $gettok($gettok($address($nick,5),2,33),1,64)
  haltdef
}


In your example above, this returns ~mIRC.

Or did you mean the CTCP Version?

-Andy

#128087 20/08/05 11:41 PM
Joined: Aug 2005
Posts: 5
S
Sn1per Offline OP
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
S
Joined: Aug 2005
Posts: 5
Sorry i should have made my self more clear..

yes i meant CTCP Version
and will it show in the channel screen rather than me having to go and check teh status screen every time some one joins in


thanks ever so much.

#128088 20/08/05 11:56 PM
Joined: Dec 2002
Posts: 3,547
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Dec 2002
Posts: 3,547
Something like:

Code:
On !*:Join:#: {
  ctcp $nick version
  %ctcp.chan = $chan
  .enable #CTCP
}

#CTCP off
on 1:CTCPREPLY:VERSION*: {
  echo 2 %ctcp.chan $nick is using IRC client: $1-
  .disable #CTCP
}
#CTCP end


-Andy

#128089 21/08/05 04:21 AM
Joined: Aug 2005
Posts: 5
S
Sn1per Offline OP
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
S
Joined: Aug 2005
Posts: 5
Thanks Very Much Indeed

This is it!! what i needed. Your help is well appreciated.


Link Copied to Clipboard