|
|
- #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
- }
复制代码 |
|