blob: 2ca856ebaddfef9c28756558934f1725ab3b03ca (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
/*
This script will return the current time in kitchen format if the protocol (of the remote bridge) isn't irc
See https://github.com/d5/tengo/blob/master/docs/stdlib-times.md
This result can be used in {TENGO} in RemoteNickFormat
*/
times := import("times")
if protocol != "irc" {
result=times.time_format(times.now(),times.format_kitchen)
}
|