R.I.P

By Protheus on Aug 17, 2015

So i wrote a small little snippet so that when someone quits, your client will msg your active window with R.I.P and the name of the nick that quit. So it should look like this:
[18:30] * Geomat (~keith@NewNet-AF1061E4.static.internode.on.net) Quit (Ping timeout: 181 seconds)
[18:30] <Protheus[A]> R.I.P Geomat
Enjoy.

on *:QUIT: {
  /msg $active R.I.P $nick
}

Comments

Sign in to comment.
Nienqster   -  Feb 16, 2018

Hi,

Isnt there something like this but for joining?

Like a "nicktalk" where you are able to give each chatter his or her OWN nicktalk whenever they join it says something about them.

Eg.

Add Nicktalk:

Eg.

[2017-09-15 09:23:33] → <~Nienq> !addnicktalk Nienq is our Boss Lady

[2017-09-15 09:23:33] → Nienq parts (chat27@zairc-j5t.7ne.255.169.IP)
[2017-09-15 09:23:33] → Nienq joined (chat27@zairc-j5t.7ne.255.169.IP)
[2017-09-15 09:23:34] <@Chappie> 12tells everybody... that 4Nienq 7 is our Boss Lady.

So when you add a specific persons "nicktalk" it has to also have a command where you can remove it?

Eg.

!clearnicktalk Nienq
[2017-09-15 09:23:33] → <~Nienq> !clearnicktalk Nienq
[2017-09-15 09:23:34] <@Chappie> Nicktalk for Nienq has been cleared.

 Respond  
dma   -  Sep 14, 2015

how do you make this random? Like 5 different msgs ?

dma  -  Sep 15, 2015

I tried this but it don't work

on *:quit:#: {
%rand $r(1,5) {
if (%rand == 1) { msg $chan $nick, see ya later $nick }
if (%rand == 2) { msg $chan $nick, good bye $nick }
if (%rand == 3) { msg $chan $nick, Wait Come Back $nick I not done talking to you }
if (%rand == 4) { msg $chan $nick, come back soon $nick ? }
if (%rand == 5) { msg $chan $nick, cya $nick }
}
}

rebel9  -  Sep 16, 2015
on *:QUIT:#: {
  /set %lel $rand(1,3)
  if (%lel == 1) msg $chan Very dank quit msg.
  if (%lel == 2) msg $chan Super dank quit msg.
  if (%lel == 3) msg $chan Dankest quit msg.
}
dma  -  Sep 17, 2015

this works ?

dma  -  Sep 17, 2015

dont work

rebel9  -  Sep 20, 2015

change first line to On $*:QUIT: {

You may also want to set a variable for $chan

Sign in to comment

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.