|
原CsummzCN插件,普通用户也可以随意使用。(可能是我不会使用的原因)
为了解决权限问题我自己对CsummzCN插件做了一点点修改
(管理员才可以使用)
/////////
public menu1Action(id,key) {
if (get_user_flags(id) & ADMIN_KICK) { ////修改处
// 1. Terrorist
if(key == 0) {
target[id] = "@T";
menu3Display(id);
return 1;
}
........
.....
..
.
// 5. Yourself
if(key == 4) {
new idstr[33];
num_to_str(id,idstr,32);
target[id] = idstr;
menu3Display(id);
return 1;
}
}
// 0. Exit
// Nothing happens and the menu closes
return 1;
}
////////////
熟悉插件编写的大侠们,不知道这样是否可行。还有什么好的办法?请指点。。÷
本人测试正常。普通用户不可使用,管理用户可以使用。 |
|