Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Plugin generated by AMXX-Studio */
- #include <amxmodx>
- #include <fun>
- #include <amxmisc>
- #define PLUGIN "New Plug-In"
- #define VERSION "1.0"
- #define AUTHOR "author"
- new helti
- public plugin_init() {
- register_plugin(PLUGIN, VERSION, AUTHOR)
- register_clcmd("say /helti", "heal")
- helti = register_cvar("amx_hp", "100")
- }
- public heal(id)
- {
- if(get_user_flags(id) & ADMIN_RCON)
- {
- new helti = get_user_health(id)
- set_user_health(id, helti + get_pcvar_num(helti))
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment