#include <amxmodx>
#include <csx>
#include <fakemeta>
new Players;
public plugin_init() {
register_plugin("six seven", "6.7", "67");
set_task(1.0, "hud_task", 0, _, _, "b");
Players = get_maxplayers();
}
public hud_task() {
for(new i = 1; i <= Players; i++) {
if(!is_user_connected(i) || is_user_alive(i))
continue;
new target = pev(i, pev_iuser2);
if(target > 0 && target <= Players && is_user_alive(target)) {
new stats[8], bodyhits[8];
new rank = get_user_stats(target, stats, bodyhits);
new rankMax = get_statsnum();
set_hudmessage(150, 150, 150, -1.0, 0.75, 0, 0.0, 1.1, 0.0, 0.0, -1);
show_hudmessage(i, "%n jest w rankingu %d z %d^n[%d] ZABIC | [%d] HS | [%d] SMIERCI", target, rank, rankMax, stats[0], stats[2], stats[1]);
}
}
}
przetestuj 
Użytkownik mordoryjacz edytował ten post 28.03.2026 22:38