I have this script. but I do not want to change the name of the admin?
can you help?

PHP Code:
#include <amxmodx>
PHP Code:
[left]#include <amxmisc>#define PLUGIN "TAGNAME"
#define VERSION "1.0"
#define AUTHOR "algoasi"
public plugin_init()
register_plugin(PLUGIN, VERSION, AUTHOR)public client_putinserver(id)
set_task(3.0,"change",id);
public change(id)
{
if(!is_user_connected(id))
return 0;
new name[32], buffer[32];
get_user_name(id,name,31);
if(containi(name,"[tag]") != -1)
return 0;
formatex(buffer,sizeof buffer - 1, "[tag] *%s", name);
client_cmd(id, "name ^"%s^"", buffer);
return 1;
}public client_infochanged( id )
{
new newname[ 32 ], oldname[ 32 ], buffer[32];
get_user_info(id, "name", newname, 31 );
get_user_name(id, oldname, 31 );
if(equali( newname, oldname ) )
return PLUGIN_CONTINUE;
if(containi(newname,"[tag]") != -1)
return PLUGIN_CONTINUE;
formatex(buffer,sizeof buffer - 1, "[tag] *%s", newname);
client_cmd(id, "name ^"%s^"", buffer);
return PLUGIN_CONTINUE;
}[/left]