Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前正在使用 mIRC 做一个 Twitch 聊天机器人。有没有办法检查分配变量的剩余时间?也就是说,距离它被移除还有多长时间。
例子:
我有一个设置为存在 120 秒 ( set -u120 %myvar itsvalue) 的变量。 有没有办法检查那个时间还剩多少时间?因此,例如,如果还剩 30 秒,您可以以某种方式返回该值并将其分配给另一个变量。
set -u120 %myvar itsvalue
$var(%myvar, 1).secs将返回剩余的秒数,直到它被 u 开关取消设置。如果未找到该变量,它将返回$null.
$var(%myvar, 1).secs
$null