MegastoRM

plugin

Apr 1st, 2012
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.40 KB | None | 0 0
  1. /* Plugin generated by AMXX-Studio */
  2.  
  3. #include <amxmodx>
  4. #include <fun>
  5. #include <amxmisc>
  6.  
  7. #define PLUGIN "New Plug-In"
  8. #define VERSION "1.0"
  9. #define AUTHOR "author"
  10.  
  11. new dodaj = 100
  12.  
  13. public plugin_init() {
  14.     register_plugin(PLUGIN, VERSION, AUTHOR)
  15.    
  16.     register_clcmd("say /heal","cmdheal")
  17. }
  18.  
  19. public cmdheal(id)
  20. {  
  21.     new helti = get_user_health(id)
  22.     set_user_health(id, helti + dodaj)
  23.    
  24. }
Advertisement
Add Comment
Please, Sign In to add comment