←  Szukam pluginu

AMXX.pl: Support AMX Mod X i SourceMod

»

Info przez 5sek po śmierci

Zablokowany

ammo19 - zdjęcie ammo19 18.02.2011

Tak jak w temacie szukam infa przez 5 sekund po smierci. proszę o pomoc!
Odpowiedz

naXe - zdjęcie naXe 18.02.2011

#include <amxmodx>

#define PLUGIN "Info After Death"
#define VERSION "1.0"
#define AUTHOR "naXe"

public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
register_event("ResetHUD", "Spawn", "b");
register_event("DeathMsg", "Death", "a");

}

public client_disconnect(id)
{
remove_task(id);
}

public Spawn(id)
{
remove_task(id);
}

public Death()
{
new id = read_data(2)

set_task(1.0, "HudMessage", id, _, _, "b");

}

public HudMessage(id)
{
set_hudmessage(255, 0, 0, 0.01, 0.4, 0, 6.0, 1.0)
show_hudmessage(id, "Nasze forum: Lagerzy.eu")
}
Odpowiedz
Zablokowany