Сделайте Плагин Плизззз

serverhq

New Member
чтобы после смерти через 5 секунд выводилось hud_ сообщение нужен .sma
 

Bos93

VIP
Код:
#include <amxmodx>

public plugin_init()
{
register_event("DeathMsg","Event_DeathMsg","a");
}

public Event_DeathMsg()
{
    set_hudmessage(250, 0, 0, 0.05, 0.65, 0, 1.0, 1.0, 0.1, 0.2, -1)  
    show_hudmessage(read_data(2), "текст")  
}
 
Сверху