Skip to content
General IRCd

Alarm Looping Sound

A TG007 community discussion started by -TorTeX-.

Discussion 3 posts
Page 1 of 1
Open
Topic #6294 · 3 published posts · 2,118 views

I'm trying to make an alarm for irc, but i want the song to repeat itself.

 

on 1:TEXT:!mik:#:/msg # Now Playing : Greenday - Holiday | /msg # that should wake him up ! | /splay Greenday-Holiday.mp3

 

Would be grateful if someone could help me.

 

Thanks in advance.

 

 

on 1:TEXT:!mik:#:{
msg # Now Playing : Greenday - Holiday
msg # that should wake him up !
splay Greenday-Holiday.mp3
.enable #alarm
}
#alarm off
on *:mp3end:{ splay Greenday-Holiday.mp3 }
#alarm end
alias f2 { .disable #alarm | echo -a Alarm stopped }

hope that helps :)

People are like slinkies; they're generally boring until you push them down stairs

on 1:TEXT:!mik:#:{
msg # Now Playing : Greenday - Holiday
msg # that should wake him up !
splay Greenday-Holiday.mp3
.enable #alarm
}
#alarm off
on *:mp3end:{ splay Greenday-Holiday.mp3 }
#alarm end
alias f2 { .disable #alarm | echo -a Alarm stopped }

hope that helps :)

 

Thnx alot it works ;)