masher0782 发表于 2008-4-19 23:38:18

本鸟毛第二次写插件又失败了..各位老鸟来批评下..

#include <amxmodx>
#include <fun>

#define AUTHOR "Neo Hazard"
#define VERSION ".1"
#define PLUGIN "200 HP"
new maxhp

public plugin_init()
{
register_plugin("PLUGIN","AUTHOR","VERSION")
register_event("HLTV","event_round_start","b","1=0","2=0")
maxhp = register_cvar("max_health","200")
}
public event_round_start(id)
{
set_user_health (id, maxhp)
return PLUGIN_HANDLED
}

masher0782 发表于 2008-4-20 00:18:16

回复: 本鸟毛第二次写插件又失败了..各位老鸟来批评下..

咋没人理我啊 伤心..

apocalyptic 发表于 2008-4-20 12:10:40

回复: 本鸟毛第二次写插件又失败了..各位老鸟来批评下..

你想在玩家出生的时候给他设置200血是不是?

zwfgdlc 发表于 2008-4-20 12:18:00

回复: 本鸟毛第二次写插件又失败了..各位老鸟来批评下..


register_event("HLTV","event_round_start","b","1=0","2=0")

改成
register_event("ResetHUD","event_round_start","be")

Arvy 发表于 2008-4-20 12:52:38

回复: 本鸟毛第二次写插件又失败了..各位老鸟来批评下..

ls正确。。。但是我不明白const flags的具体应用,能说说吗?谢谢!

masher0782 发表于 2008-4-20 17:32:07

回复: 本鸟毛第二次写插件又失败了..各位老鸟来批评下..

谢~你住济南的话我请你吃饭..
页: [1]
查看完整版本: 本鸟毛第二次写插件又失败了..各位老鸟来批评下..