Nie do końca rozumiem co znika oO Łap tutaj masz trochę niżej a kolor to ustaw sobie - set_hudmessage(
255, 0, 0, 0.02, 0.65, 0, 6.0, 4000.0) Te wyróżnione cyfry to kolor w
RGB, tutaj masz rozpiske:
RGB Color Table
#include <amxmodx>
#include <amxmisc>
#include <fakemeta>
#define PLUGIN "ShowInfo"
#define VERSION "1.0"
#define AUTHOR "Whisper"
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_forward(FM_PlayerPreThink, "hud_prethink");
}
public hud_prethink(id)
{
new name [32]
get_user_name(id, name, 31)
new zycie
zycie = get_user_health(id)
set_hudmessage(255, 0, 0, 0.02, 0.65, 0, 6.0, 4000.0)
show_hudmessage(id, "[Twoj nick : %s]^n[Twoje HP : %d]", name, zycie)
}