Przerobiłem na Hud powinno teraz działać ;]
/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "WelcomeSayIP"
#define VERSION "1.0"
#define AUTHOR "Sn!ff3r"
new swiezak[33];
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR);
register_event("ResetHUD", "Event_newPlayerSpawn", "be")
register_clcmd("fullupdate", "clcmd_fullupdate");
}
public Event_newPlayerSpawn(id)
{
if(!swiezak[id]) return;
swiezak[id]=0;
new name [32], ip[16]
get_user_name(id, name, 31)
get_user_ip(id,ip,15,1)
set_hudmessage(0, 191, 255, -1.0, 0.1, 0, 6.0, 7.0)
show_hudmessage(id, "%s : Czesc, moje IP to %s, gdybym czitowal to zapiszcie je i podajcie na amxx.pl <img src='http://img.amxx.pl/public/style_emoticons/<#EMO_DIR#>/smile.gif' class='bbc_emoticon' alt=':)' />", name,ip)
}
public client_connect(id)
{
swiezak[id]=1;
}
public clcmd_fullupdate()
{
return PLUGIN_HANDLED_MAIN;
}
Ps.nie ma takiej potrzeby łączyć tych pluginów ;]