P1xeL

Stav

Sep 14th, 2012
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.27 KB | None | 0 0
  1. #include <amxmodx>
  2.  
  3. public Function()
  4. {
  5.     for(new i=1; i<=get_maxplayers(); i++)
  6.     {
  7.         if(is_user_alive(i))
  8.         {
  9.             new szName[32];
  10.             get_user_name(i, szName, charsmax( szName ));
  11.             set_hudmessage(255, 0, 0, -1.0, 0.01);
  12.             show_hudmessage(0, "%s", szName);
  13.         }
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment