- 听众
- 收听
- 积分
- 3894
- 主题
- 回帖
- 0
- 精华
注册时间2008-4-22
最后登录1970-1-1
该用户从未签到
|
发表于 2011-4-4 16:11:51
|
显示全部楼层
- #include <amxmodx>
- public plugin_init()
- {
- register_plugin("Zero (0) HP Bug Fix", "0.4", "Exolent");
- register_message(get_user_msgid("Health"), "message_Health");
- }
- public message_Health(msgid, dest, id)
- {
- if(!is_user_alive(id))
- return PLUGIN_CONTINUE;
- static hp;
- hp = get_msg_arg_int(1);
- if(hp > 255 && (hp % 256) == 0)
- set_msg_arg_int(1, ARG_BYTE, ++hp);
- return PLUGIN_CONTINUE;
- }
复制代码
|
|