|
楼主 |
发表于 2008-2-27 13:30:59
|
显示全部楼层
来自 中国–广东–深圳
回复: 赐教一下
网络原因 我是千M的网卡..主版自带的,,,, 我就开了一个服..直接连接到主干交换机上....
reliable channel overflow 我按大家说的把这个文件删了motd.txt 但是还是这个问题,,插件几乎没有装 metamod是P32 amxmodx点通的1.76C Booster1.70
; AMX Mod X 插件
; CHM 汉化组 Rulzy 汉化
; 管理员 基本类 - 两个中只能使用一种
admin.amxx ; 管理员 基本 (与管理员相关的插件都需要该插件)
;admin_sql.amxx ; 管理员 基本 - SQL 版本 (注释掉 admin.amxx)
; 基本类
admincmd.amxx ; 基本的管理员控制台命令
adminhelp.amxx ; 给管理员控制台命令提供帮助的命令
;adminslots.amxx debug ; 管理员预留通道
;multilingual.amxx ; 多语言管理
; 菜单类
menufront.amxx ; 管理员菜单格式
cmdmenu.amxx ; 命令菜单 (声音播放, 各种设置)
;plmenu.amxx ; 玩家菜单 (踢人, 封人, 客户端命令等.)
;telemenu.amxx ; 传送玩家菜单 (需要开启娱乐模块!)
;mapsmenu.amxx ; 地图菜单 (投票, 切换地图)
; 聊天 / 信息 类
adminchat.amxx ; 控制台聊天命令
antiflood.amxx ; 阻止客户端向服务器灌水
;scrollmsg.amxx ; 显示一条滚动信息
imessage.amxx ; 显示消息信息
;adminvote.amxx ; 投票命令
; 地图相关类
nextmap.amxx ; 显示地图循环的下一张地图
;mapchooser.amxx ; 允许投票选择下一张地图
timeleft.amxx ; 显示当前地图的剩余时间
; 配置类
pausecfg.amxx ; 允许暂停或者恢复某些插件的使用
statscfg.amxx ; 通过菜单或者命令来管理数据统计插件
; 反恐精英
restmenu.amxx ; 禁用武器菜单
statsx.amxx ; 在死亡或者结束一局的时候显示统计信息 (需要开启 CSX 模块!)
miscstats.amxx ; 为反恐精英集成各种事件通告
;stats_logging.amxx ; 武器数据统计记录 (需要开启 CSX 模块!)
; 允许使用 AMX Mod 插件
;amxmod_compat.amxx ; AMX Mod 向后兼容层
; 自定义类 - 添加第三方插件到这里
sign2.amxx ; 点通签名
enterleave.amxx ; 进入离开服务器信息提示
CHM 汉化组 Rulzy 汉化
;;;
; 要启用一个模块,去掉名字前面的注释符(;)。
; 如果不在这里,只需增加它的名字,一行一个。
; 你不需要写上“_amxx”部分和文件的扩展名。
;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; SQL模块经常需要你手动启用。你可以同时启用多个。 ;;
;; 使用sql.cfg中的amx_sql_type来指定默认数据库类型 ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;mysql
;sqlite
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; 将第三方模块添加到下面。你可以只列出它们的名字, ;;
;; 不要“_amxx”和文件扩展名。 ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; 这些模块将会自动检测并在需要的时候加载,你不需要 ;;
;; 在这里启用它们,除非你碰到有问题。 ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
fun
;engine
;fakemeta
;geoip
;sockets
;regex
;nvault
cstrike
csx
Booster脚本
echo Executing Booster Configuration File
// booster_show_connmsg --
//
// 2: Large connmessage
// 1: small connmessage
// 0: disabled
//
booster_show_connmsg 0
// booster_autofps --
//
// Automaticly changes value of sys_ticrate to get server run at fps value defined in this cvar.
// Minimum sys_ticrate that set is 100, maximum 1000.
//
booster_autofps 250
// booster_minsleepms --
//
// Minimum sleep time set to mmsystem. 1.41-1.44 used 1ms which might cause some timer problems
// with Win2k.
//
// 1ms makes server to run at max 1000fps
// 2ms -||- max 500fps
// 3ms -||- max 333fps (booster default)
// 4ms -||- max 250fps
// 10ms -||- max 100fps (OS default)
// Default value is 3ms. Value range is 1 to 10.
//
// !NOTE! systemwide effect! all timers will get accurency that booster sets!
// !NOTE! If you run other programs that use multimedia timer tweak values that booster has set
// might get overridden!
//
booster_minsleepms 3
// booster_force_systicrate --
//
// Less than 50 : Disabled
// More than or equal to 50 : Forces value of sys_ticrate to value of this cvar
//
// !NOTE! Setting more than or equal to 50 overrides booster_autofps feature
//
booster_force_systicrate 10000
// booster_cpu_enabled --
//
// 1: Booster will monitor CPU usage and adjust timers to reduce load when necessary
// 0: disabled
//
booster_cpu_enabled 0
// booster_cpu_spikemax --
//
// Number of times booster_cpu_spikelevel needs to be exceeded in order for timers to
// increase and CPU load to be reduced.
//
booster_cpu_spikemax 3
// booster_cpu_spikelevel --
//
// Level which CPU utilization needs to exceed (booster_cpu_spikemax times) for timers
// to increae and CPU load to be reduced.
//
booster_cpu_spikelevel 75
// booster_cpu_mminc --
//
// Amount timer will increment (WinHL-Booster will also decrease the timer every time
// 5 minutes passes without booster_cpu_spikelevel being exceeded.
//
booster_cpu_mminc 2 |
|