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 dodaj = 100
- public plugin_init() {
- register_plugin(PLUGIN, VERSION, AUTHOR)
- register_clcmd("say /heal","cmdheal")
- }
- public cmdheal(id)
- {
- new helti = get_user_health(id)
- set_user_health(id, helti + dodaj)
- }
Advertisement
Add Comment
Please, Sign In to add comment