|
发表于 2007-1-24 10:34:16
|
显示全部楼层
来自 中国–广东–潮州
回复: 如何调用外部变量?
/* Gets a cvar float. */
native Float:get_cvar_float(const cvarname[]);
/* Gets a cvar integer value. */
native get_cvar_num(const cvarname[]);
/* Reads a cvar value. */
native get_cvar_string(const cvarname[],output[],iLen);
如:
获取 玩家 开始金钱:- new money
- money = get_cvar_num("amx_startmoney")
复制代码
注册自定义参数:- register_cvar("你的自定义字串", "默认数值")
复制代码
对于你插件里面没有注册(设定)的参数(一般是CS本身提供的,如 mp_friendlyfire ),在读取参数之前最好用- if ( cvar_exists("mp_friendlyfire") )
- {
- ....
复制代码 检测一下再读取。。。
等等。。。 |
|