mIRC Home    About    Download    Register    News    Help

Print Thread
#168359 07/01/07 08:40 PM
Joined: Dec 2006
Posts: 46
D
Ameglian cow
OP Offline
Ameglian cow
D
Joined: Dec 2006
Posts: 46
I am in need of a script that people can type !gt and it will display Game Time is, my local time +1 hour.

I know the beginning, I just do not know how to show the time.

on *:text:!gt*:#:{

thanks for your time and help.

danzigrules #168361 07/01/07 09:11 PM
Joined: Mar 2003
Posts: 612
B
Fjord artisan
Offline
Fjord artisan
B
Joined: Mar 2003
Posts: 612
Code:
on *:text:!gt*:#:{
   if $time(HH) < 23 {
     msg $chan Game Time: $+($calc( $time(HH) + 1 ),:,$time(nn))
   }
   else msg $chan Game Time: $+(00,:,$time(nn))
}


btk


Last edited by billythekid; 07/01/07 09:34 PM.

billythekid
billythekid #168367 07/01/07 09:55 PM
Joined: Dec 2006
Posts: 46
D
Ameglian cow
OP Offline
Ameglian cow
D
Joined: Dec 2006
Posts: 46
thank you very much laugh


Link Copied to Clipboard