Advertisement
Guest User

hmmmm

a guest
Feb 23rd, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. /* Plugin generated by AMXX-Studio */
  2.  
  3. #include <amxmodx>
  4. #include <amxmisc>
  5. #include <fun>
  6. #include <ColorChat>
  7. #include <dhudmessage>
  8.  
  9. #define PLUGIN "Nisuyim le NeRoX"
  10. #define VERSION "1.0"
  11. #define AUTHOR "EastLight"
  12.  
  13. #define Prefix "^4[^1NeRoX^4]^1"
  14.  
  15.  
  16. public plugin_init() {
  17. register_plugin(PLUGIN, VERSION, AUTHOR)
  18. register_clcmd("say /test", "NeRoXTest")
  19. register_clcmd("say_team /test", "NeRoXTest")
  20. }
  21.  
  22. public NeRoXTest(id)
  23. {
  24. if (is_user_alive(id))
  25. {
  26. set_user_armor(id, 100)
  27. set_user_health(id, 255)
  28.  
  29. ColorChat(id, NORMAL, "%s You Just Got^4 100 Armor ^1|^4 255 Health Point^1.", Prefix)
  30.  
  31. }
  32.  
  33.  
  34. if (is_user_alive(id))
  35. {
  36. set_dhudmessage( 0, 160, 0, -1.0, 0.25, 2, 6.0, 3.0, 0.1, 1.5 );
  37. show_dhudmessage( id, "Welcome, Gordon Freeman." );
  38.  
  39. }
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement