- 听众
- 收听
- 积分
- 5632
- 主题
- 回帖
- 0
- 精华
注册时间2005-10-28
最后登录1970-1-1
该用户从未签到
|
发表于 2011-1-9 07:07:06
|
显示全部楼层
kz_legal_settings.sma
- #include <amxmodx>
- #include <amxmisc>
- #include <engine>
- #define PLUGIN "Kz Legal Settings"
- #define VERSION "1.0"
- #define AUTHOR "NumB"
- public plugin_init() {
- register_plugin(PLUGIN, VERSION, AUTHOR);
- }
- public client_PreThink(id) {
- if (!(get_cvar_num("edgefriction") == 2)) {
- set_cvar_string("edgefriction", "2");
- }
- if (!(get_cvar_num("mp_footsteps") == 1)) {
- set_cvar_string("mp_footsteps", "1");
- }
- if (!(get_cvar_num("sv_cheats") == 0)) {
- set_cvar_string("sv_cheats", "0");
- }
- if (!(get_cvar_num("sv_gravity") == 800)) {
- set_cvar_string("sv_gravity", "800");
- }
- if (!(get_cvar_num("sv_airaccelerate") == 10)) {
- set_cvar_string("sv_airaccelerate", "10");
- }
- if (!(get_cvar_num("sv_maxspeed") == 320)) {
- set_cvar_string("sv_maxspeed", "320");
- }
- if (!(get_cvar_num("sv_stepsize") == 18)) {
- set_cvar_string("sv_stepsize", "18");
- }
- if (!(get_cvar_num("sv_maxvelocity") == 2000)) {
- set_cvar_string("sv_maxvelocity", "2000");
- }
- client_cmd(id, "developer 0;fps_max 101");
- }
复制代码 |
|