|
的确是原创不过不是我,是我的朋友。
具体功能:配合nocd武器限制插件,白天nocd无法进入,临晨1点~9点让nocd进入,保证人气(其实是我的哥们儿要人陪着通宵),代码很简单,大家在此基础上发展吧
#include <amxmodx>
public plugin_init()
{
register_plugin("TimeNoCD","1.0","Csharrrrrrrrrrrp")
new timer[3]
new nowhour
get_time("%H",timer,2)
nowhour = str_to_num(timer)
if (nowhour >= 1 && nowhour <= 9 ){
log_message("Echo =eXtrA=.No.CD")
server_cmd("exec timeoff.cfg")
}
else{
log_message("Echo =eXtrA=.Need.CD")
server_cmd("exec timeon.cfg")
}
return PLUGIN_CONTINUE
}
两个cfg文件和server.cfg放在一个目录,内容自己写吧 |
|