lili2009 发表于 2010-3-24 01:27:11

玩家获得礼物

new szIP, szSubIP;
        get_user_ip( id, szIP, 15);
        get_pcvar_string( g_pcSubIP, szSubIP, 15);
        //判断是否拥有 z 权限或者是否为指定 IP 的玩家
        //在这里 dtgift_onlyip 参数可以设置成 例如 "192.168.0."
        //这样就可以允许 IP 段:192.168.0.* 的玩家获得礼物
        if( get_user_flags( id) & ADMIN_USER == 0 && strfind( szIP, szSubIP) == -1){
                //两者都不是则不允许获得礼物.
                //并提示玩家.
                client_print( id, print_chat, "sorry, you are not the lan player.");
                return PLUGIN_HANDLED;
        }
       
        return PLUGIN_CONTINUE;
}
页: [1]
查看完整版本: 玩家获得礼物