PHP Code:
#include <amxmodx>
new const PRE_TAG[] = "ICSL_{"
new const POST_TAG[] = "}"
public plugin_init()
{
register_plugin("Clan Tag on Join","1.0","Fysiks")
}
public client_putinserver(id)
{
new name[33]
get_user_name(id,name,32)
format(name, charsmax(name), "%s%s%s", PRE_TAG, name, POST_TAG)
set_user_info(id, "name", name)
}
The answer to your next question is No (You should know what I'm talking about

lol)
__________________