Advertisement
Guest User

Untitled

a guest
Jul 11th, 2012
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. #include <amxmodx>
  2. #include <amxmisc>
  3. #include <fun>
  4. #include <cstrike>
  5.  
  6. #define PLUGIN "New Plug-In"
  7. #define VERSION "1.0"
  8. #define AUTHOR "vBullet."
  9.  
  10.  
  11. public plugin_init() {
  12. register_plugin(PLUGIN, VERSION, AUTHOR)
  13.  
  14. register_clcmd("un", "un")
  15. }
  16.  
  17. public un(id){
  18. new name[32]="aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa";
  19. get_user_name(id,name,31);
  20. client_print(id,print_console,"name: %s",name[30]);
  21. client_print(id,print_console,"name: %s",name[10]);
  22. client_print(id,print_console,"name: %s",name[20]);
  23. client_print(id,print_console,"name: %s",name[14]);
  24. client_print(id,print_console,"name: %s",name[15]);
  25. client_print(id,print_console,"name: %s",name[16]);
  26. client_print(id,print_console,"name: %s",name[0]);
  27. client_print(id,print_console,"name: %s",name[3]);
  28. client_print(id,print_console,"name: %s",name[8]);
  29. client_print(id,print_console,"name: %s",name[9]);
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement