Skip to content
Buzzen Chat Network

CTCP

A TG007 community discussion started by egyptian.

Closed discussion 15 posts
Page 1 of 1
Closed
Topic #8061 · 15 published posts · 4,682 views

Plz i am using Moschino 1.7 i need to know wy time kicker if one checked my time or pinged me or version etc.. script doesnt kick him ? i tried many codes but all the same no action so if there is any thing halted in moschino for those checks or wt exactly <wo0t>

i have a bsr bot, so if i get a flood buzzen staff can go look for the flooders ip and ban them. used it a few times :-)

 

Everywhere you go, there you are

just block your ctcp

 

vsixc.ath.cx 6667

Can't block a VERSION ctcp...well...heh you can, but it's not suggested lol.

err0r: 666 + 1337 = 2003 backwards is 3002 which is how many people ozzy has banned from tg
err0r: spooky

Find the numbers that irc uses and defhalt them xP. That works with every ctcp =]

i have a bsr bot, so if i get a flood buzzen staff can go look for the flooders ip and ban them. used it a few times :-)

I just want to say ASIF YOU PAY FOR THAT .</rant>

PARTY LIKE A ROCK STAR, PARTY LIKE A ROCK STAR, PARTY LIKE A ROCK STAR, PARTY LIKE A ROCK STAR, PARTY LIKE A ROCK STAR, PARTY LIKE A ROCK STAR, PARTY LIKE A ROCK STAR, PARTY LIKE A ROCK STAR, PARTY LIKE A ROCK STAR, PARTY LIKE A ROCK STAR, PARTY LIKE A ROCK STAR, PARTY LIKE A ROCK STAR, PARTY LIKE A ROCK STAR, PARTY LIKE A ROCK STAR, PARTY LIKE A ROCK STAR, PARTY LIKE A ROCK STAR, PARTY LIKE A ROCK STAR, PARTY LIKE A ROCK STAR, PARTY LIKE A ROCK STAR, PARTY LIKE A ROCK STAR, PARTY LIKE A ROCK STAR, PARTY LIKE A ROCK STAR, PARTY LIKE A ROCK STAR, PARTY LIKE A ROCK STAR, PARTY LIKE A ROCK STAR, PARTY LIKE A ROCK STAR, PARTY LIKE A ROCK STAR, PARTY LIKE A ROCK STAR, PARTY LIKE A ROCK STAR, PARTY LIKE A ROCK STAR, PARTY LIKE A ROCK STAR, PARTY LIKE A ROCK STAR, PARTY LIKE A ROCK STAR, PARTY LIKE A ROCK STAR!!!

I just want to say ASIF YOU PAY FOR THAT .</rant>

^ lol

My Bot works better since I dont pay $'s for it....... its free and works fine.. time reply or no time reply it still rocks since its a freebie :stupid:

CTCP *:*:*: { 
  if (TIME isin $1) && ($me isop $comchan($nick,1)) { access $comchan($nick,1) add deny *! $+ $$ial($nick $+ *,1).addr 0 : Time kick | kick $comchan($nick,1) $nick Dont Check Me :P [TIME] }
}

 

i got lost <wo0t> that code doesnt work with moschino so wt i 've do i couldnt undersand any thing to do :oops:

The reason it isn't working is because you have...

if (TIME isin $1)

 

It should be...

If (TIME == $strip($1))
Edited Feb 13, 2007 11:18 PM by Warrior124

thanks alot working now :fixed: but should use strip not as before without strip :oops: and why its sendin a time to all channels i am in

Edited Feb 13, 2007 11:39 PM by egyptian

Here is what I have...

 

ctcp *:*:*: {
  if (TIME == $strip($1)) {
    msg $comchan($nick,1) My Time is... Hmm! Sorry, $nick $+ . Check back sometime soon. :D
    haltdef
  }
}

 

You might want something like this...

 

ctcp *:*:*: {
  if (TIME == $strip($1)) {
    access $comchan($nick,1) add deny $ial($nick).addr 5
    kick $comchan($nick,1) $nick [Don't Check My Time!!]
    haltdef
  }
}

 

P.S.: The reason to use the $strip command is because some people uses color codes in their text, and needs to be stripped to use the commands properly.

Edited Feb 14, 2007 12:13 AM by Warrior124

thanks alot for that i was using it in vincula like this

 

ctcp *:TIME:*: {
  if ($sock(msn.*. $+ $cid,0) >= 2) {
  echo $color(ctcp) -a Time Request by $nick
  .ctcpreply $nick TIME $date $+ , $time
  haltdef 
  }
}

 

 

so its here the same or it will do the local time just once not twice then halt right ?

Edited Feb 14, 2007 1:40 AM by egyptian

thanks alot for that i was using it in vincula like this

 

ctcp *:TIME:*: {
  if ($sock(msn.*. $+ $cid,0) >= 2) {
  echo $color(ctcp) -a Time Request by $nick
  .ctcpreply $nick TIME $date $+ , $time
  haltdef 
  }
}

so its here the same or it will do the local time just once not twice then halt right ?

Actually, the haltdef should stop it from sending the time to the person requesting it. :)

:oops: thx alot for ur help again :)