MegastoRM

sma

Oct 1st, 2012
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. #include <amxmodx>
  2. #include <amxmisc>
  3. #include <dhudmessage>
  4.  
  5. public plugin_init() {
  6. register_plugin("Hud","blablabla","blablabla")
  7. }
  8.  
  9. public client_putinserver(id)
  10. set_task(3.0, "IPInfo",id)
  11.  
  12. public IPInfo(id){
  13. if(!is_user_connected(id))
  14. return PLUGIN_HANDLED
  15.  
  16. set_dhudmessage(255, 255, 255, -1.0, 0.04, 0, 0.5, 2.0, 0.08, 2.0, true);
  17. show_dhudmessage(0,"uRBAN Zombe [Fast DL] : 213.135.165.234:27019");
  18.  
  19. return PLUGIN_CONTINUE
  20. }
Advertisement
Add Comment
Please, Sign In to add comment