lol.. ya, I made that.. it is part of UAIO...
example:
Code:
#include <amxmodx>
new bool:g_bIsJoining[33] = false
public plugin_init()
{
register_event( "CurWeapon", "Event_ChgWeapon", "be", "1=1" )
}
public client_putinserver( id )
{
g_bIsJoining[id] = true
}
public Event_ChgWeapon( id )
{
if( g_bIsJoining[id] )
{
g_bIsJoining[id] = false
if( get_user_team( id ) == 1 )
client_print( id, print_chat, "Welcome to the Terrorist Team!" )
else
client_print( id, print_chat, "Welcome to the Counter-Terrorist Team!" )
}
return PLUGIN_CONTINUE
}
Or something like that!!