这是我的代码;
on *:text:!points:#:{
msg # $nick has $readini(Points.ini,$+(#,.,$nick),Points) total points.
}
多数民众赞成,但如果有5个人连续做点,那么它就会让聊天变为现实。如何让它每10秒更新一次,然后显示一条消息,其中包含那些在十秒钟内询问过的所有人的积分但是在一条消息中?
答案 0 :(得分:0)
这是一段代码,只需5秒即可完成3次请求。
on *:text:!points:#: {
inc -u5 %flood. [ $+ [ # ] $+ ]
if (%flood. [ $+ [ # ] ] > 3) {
return
}
msg # $nick has $readini(Points.ini,$+(#,.,$nick),Points) total points.
}