 |
|
Member
|

05-09-2011
, 03:09
Re: Admin-vip connect? Help
|
#4
|
Quote:
Originally Posted by SonicSonedit
Garrey
Try this:
PHP Code:
#include <amxmodx>
public plugin_init()
{
register_plugin("ADMIN/VIP Teavitus","0.01","FREE COPY")
}
public client_putinserver(id)
{
static name[33]
get_user_name(id,name,charsmax(name))
if(get_user_flags(id) & ADMIN_KICK)
{
set_hudmessage(255, 0, 0, -1.0, 0.00, 0, 6.0, 12.0)
show_hudmessage(0,"ADMIN %s joined with server!",name)
}
else if(get_user_flags(id) & ADMIN_LEVEL_H)
{
set_hudmessage(255, 0, 0, -1.0, 0.00, 0, 6.0, 12.0)
show_hudmessage(0,"VIP %s joined with server!",name)
}
}
|
Hei. Thanks, but it doesn't working
__________________
People are like music, some speak the truth and others are just noise..
|
|
|
|