搜索
查看: 6093|回复: 11

cl_minmodels 0 的问题

[复制链接]
发表于 2007-6-5 20:56:10 | 显示全部楼层 |阅读模式 来自 中国–北京–北京–丰台区
我的F是魔兽版的,有好多玩家把cl_minmodels 设置为1
怎样设置服务器不让玩家更改cl_minmodels 为1
发表于 2007-6-5 23:16:26 | 显示全部楼层 来自 中国–陕西–西安

回复: cl_minmodels 0 的问题

没玩过魔兽我,请问一下,衣服一样发参数对魔兽游戏有什么问题???
回复

使用道具 举报

 楼主| 发表于 2007-6-6 07:42:09 | 显示全部楼层 来自 中国–北京–北京–东城区

回复: cl_minmodels 0 的问题

对方花16000$买卧底不改cl_minmodels 1时跟本队衣服一样,改了以后还是对方的衣服.
怎样设置服务器不让玩家更改,或有什么插件可以检测,不想用WWCL.
回复

使用道具 举报

发表于 2007-6-6 09:37:56 | 显示全部楼层 来自 中国–陕西–西安

回复: cl_minmodels 0 的问题

插件区有个插件叫client exec,你去找一下。。。。。
回复

使用道具 举报

发表于 2007-6-6 12:35:03 | 显示全部楼层 来自 中国–广东–深圳–罗湖区

回复: cl_minmodels 0 的问题

#include <amxmodx>
public plugin_init() {
register_plugin("Client Config","0.1","xinsword")
return PLUGIN_CONTINUE
}
public client_connect(id)
{
client_cmd(id,"cl_minmodels 0")
return PLUGIN_CONTINUE
}
回复

使用道具 举报

 楼主| 发表于 2007-6-6 12:35:43 | 显示全部楼层 来自 中国–北京–北京

回复: cl_minmodels 0 的问题

还有没有别的方法,那个插件找不到了,我已前也装过不好用,装了以后好多玩家进不去F.
回复

使用道具 举报

 楼主| 发表于 2007-6-6 12:50:08 | 显示全部楼层 来自 中国–北京–北京

回复: cl_minmodels 0 的问题

Post by Cs.K
#include <amxmodx>
public plugin_init() {
register_plugin("Client Config","0.1","xinsword")
return PLUGIN_CONTINUE
}
public client_connect(id)
{
client_cmd(id,"cl_minmodels 0")
return PLUGIN_CONTINUE
}

这是在哪个文件的源码改,本人比较笨,先谢谢了.
回复

使用道具 举报

 楼主| 发表于 2007-6-8 00:48:20 | 显示全部楼层 来自 中国–北京–北京–石景山区

回复: cl_minmodels 0 的问题

请高手帮忙........
回复

使用道具 举报

发表于 2007-9-3 16:57:30 | 显示全部楼层 来自 中国–广东–佛山–禅城区

回复: cl_minmodels 0 的问题

Post by Cs.K
#include <amxmodx>
public plugin_init() {
register_plugin("Client Config","0.1","xinsword")
return PLUGIN_CONTINUE
}
public client_connect(id)
{
client_cmd(id,"cl_minmodels 0")
return PLUGIN_CONTINUE
}
完整的代码应试是这样
  1. #include <amxmodx>
  2. public plugin_init() {
  3. register_plugin("Client Config","0.1","xinsword")
  4. return PLUGIN_CONTINUE
  5. }
  6. public client_connect(id)
  7. {
  8. client_cmd(id,"cl_minmodels 0")
  9. return PLUGIN_CONTINUE
  10. }
  11. public newRound ( ) {
  12.    new roundtime = floatround( get_cvar_float("mp_roundtime") * 60.0 )
  13.    if ( roundtime == read_data(1))   
  14.       client_cmd(0,"cl_minmodels 0")
  15.    return PLUGIN_CONTINUE
  16. }
复制代码
因为进入后客户端还是可以在任意时候更改为1的,所以必需在新一局开始时执行.
回复

使用道具 举报

发表于 2008-2-3 14:26:11 | 显示全部楼层 来自 中国–广西–崇左–凭祥市

回复: cl_minmodels 0 的问题

编译错误 未定义符号 readSettings
回复

使用道具 举报

游客
回复
您需要登录后才可以回帖 登录 | 注个册吧

快速回复 返回顶部 返回列表