Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <amxmodx>
- #include <amxmisc>
- #include <colorchat>
- public plugin_init()
- {
- register_plugin("","","")
- }
- public client_putinserver(id)
- {
- set_task(3.0, "task_Admin", id)
- }
- public task_Admin(id)
- {
- new name[32]
- get_user_name(id, name, 31)
- if(is_user_connected(id))
- return PLUGIN_CONTINUE;
- if(get_user_flags(id) & ADMIN_LEVEL_H)
- ColorChat(0, BLUE, "VIP %s entered the game!", name)
- return PLUGIN_CONTINUE
- }
Advertisement
Add Comment
Please, Sign In to add comment