Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <amxmodx>
- public Function()
- {
- for(new i=1; i<=get_maxplayers(); i++)
- {
- if(is_user_alive(i))
- {
- new szName[32];
- get_user_name(i, szName, charsmax( szName ));
- set_hudmessage(255, 0, 0, -1.0, 0.01);
- show_hudmessage(0, "%s", szName);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment