Code:
public client_putinserver(id)
{
new name[33]
get_user_name(id,name,32)
if(is_user_admin(id))
{
set_hudmessage(255, 0, 0, -1.0, 0.0, 0, 6.0, 12.0)
show_hudmessage(0, "%s has joined the n00bs",name)
return PLUGIN_HANDLED
}
set_hudmessage(85, 255, 0, 0.00, -1.0, 0, 6.0, 12.0)
show_hudmessage(0,"Welcome %s. Have fun here!",name)
return PLUGIN_HANDLED
}
To show something on a client_putinserver is still way to early .. You have to delay it about 10 secs
__________________