How do I auto ping people and tell them their ping time?
For this subject, you’ll need 2 simple lines. When a user says !ping in any channel you’re on, you will automatically ping them, and then notice them with their ping reply time. Put these lines into remotes: on *:text:!ping:#: { ctcp $nick ping } on *:ctcpreply:ping*: { if ($2 isnum) { notice $nick Your ping reply was $duration($calc($ctime – $2)) } } You may choose a different word to make it trigger, but these 2 events will get the job done. Notice in the 2nd line that it checks if $2 is a number before replying. If it isn’t a number and you let it go through, the user would recieve some strange reply, which we don’t want.