#include #define PLUGIN "ShowInfo" #define VERSION "1.0" #define AUTHOR "Whisper" new g_max_players public plugin_init() { register_plugin(PLUGIN, VERSION, AUTHOR) g_max_players = get_maxplayers() set_task(5.0,"show",666,_,_,"b") } public show(){ new name[64]; for(new id = 1;id<=g_max_players;id++){ if(!is_user_alive(id)){ continue; } get_user_name(id, name, charsmax(name)) set_hudmessage(255, 0, 0, 0.02, 0.45, 0, 6.0, 6.0) ShowSyncHudMsg(id,CreateHudSyncObj(),"[Twoj nick : %s]^n[Twoje HP : %d]", name, get_user_health(id)) } }