⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 away

📁 EPIC IRC客户端。来源于IRCII客户端但做了很多性能和功能的优化。
💻
字号:
/* * AWAY script -- a minimalist faking of the /AWAY command for when they * take /AWAY away from us.  Only sends the message once per nick per time * you change it. * Requires ircII2.6 or later (Written for EPIC3.001) *//* * This variable determines how often you send the away message to a  * person, even if they've already seen it. */@ away.recycle_time = 10000on #-msg -633 * {	if (away.msg && (sentaway[$encode($0)] < away.time) || \		(sentaway[$encode($0)] + away.recycle_time < time()))	{		ctcp $0 AWAY $away.msg $away.gonefor()		@ sentaway[$encode($0)] = time()	}}alias away {	if (away.msg = [$*])	{		echo *** You are now away [$*]	}	{		echo *** You are now back $away.gonefor()	}	@ away.time = time()}alias away.idle @ function_return = time() - away.timealias away.gonefor @ function_return = [\(Away for $tdiff($away.idle())\)]#hop'96

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -