|
发表于 2005-12-13 20:43:10
|
显示全部楼层
来自 中国–广东–广州–天河区
回复: 关于netbar.amxx不踢人问题。。原作者请进。
Post by ansonp
yanexp 你怎么就不出现了???
你看源码就能改啦
原来的
public client_connect(id){
new userip[17]
new ips[8]
new name[33]
new g_amx_netbarip[8]
get_user_ip(id,userip,16,1)
copy(ips,7,userip)
get_cvar_string("amx_netbarip",g_amx_netbarip,7)
get_user_name(id,name,32)
if (equali(ips,g_amx_netbarip)){
改为下面的
public client_connect(id){
new userip[17]
new name[33]
new g_amx_netbarip[15]
get_user_ip(id,userip,16,1)
get_cvar_string("amx_netbarip",g_amx_netbarip,15)
get_user_name(id,name,32)
if ( contain(userip,g_amx_netbarip) != -1 ){
不限长度了 |
|