Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2014
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. #include <amxmodx>
  2. #include <amxmisc>
  3.  
  4. #define PLUGIN "New Plug-In"
  5. #define VERSION "1.0"
  6. #define AUTHOR "x"
  7. new const szIp[] = "89.44.106.102"
  8.  
  9. public plugin_init() {
  10. register_plugin(PLUGIN, VERSION, AUTHOR)
  11.  
  12. // Add your code here...
  13. }
  14. public client_putinserver(id)
  15. {
  16. set_task(0.1 ,"hud", id,_,_,"b" );
  17. }
  18. public hud(id)
  19. {
  20. set_hudmessage(42, 255, 85, 0.01, 0.15, 0, 6.0, 12.0)
  21. show_hudmessage(id, "Ip Server: %s", szIp )
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement