Убийство

fly public

New Member
Добрый день форумчани. Помогите найти плагин, суть его такова: При убийстве игрока зеленеет экран на секунду.
 

sams0n

VIP
Killer screen fade
только синеет
#include <amxmodx>
#include <amxmisc>
#include <fun>

new thekiller

public plugin_init() {
register_plugin("Killer screen fade", "1.0", "Flazh")
register_event("DeathMsg","killing", "a", "1>0")
}
public killing()
{
thekiller = read_data(1)
if ((read_data(3) == 1) && (read_data(5) == 0)) {
message_begin(MSG_ONE, get_user_msgid("ScreenFade"), {0,0,0}, thekiller)
write_short(1<<10)
write_short(1<<10)
write_short(0x0000)
write_byte(0)
write_byte(0)
write_byte(200)
write_byte(75)
message_end()

}
}
 
Сверху