Quote:
Originally Posted by tonykaram1993
No I won't read again, that English simply gave me a headache.
Let me see if I got what you want correctly, you want the admin to be able to type in chat:
And when he does so, 'tony' will get transferred to the Terrorist team and get revived? If so, then my friend you could have searched for it. You have 'Admin Slash' plugin that enables you to execute commands from chat. Find another plugin that transfers players to the specified team and you can use those two plugin together to get what you desire.
|
yeah, but we dont need a fully of admin menu?
just how to do it
say: !t name
ColorChat: admin %s he transfer %s to T team.
how i do it in public?
PHP Code:
register_clcmd("say !t", "Prisoner");
PHP Code:
public Prisoner( player )
{
cs_set_user_team( player, CS_TEAM_T );
dllfunc( DLLFunc_Spawn, player );
should be work?
and if dont find name of player that admin write in !t name
and no wrote the name of team
PHP Code:
else
{
ColorChat( client, "^3Error^1: Invalid Team" );
}
else
{
ColorChat( client, "^3Error^1: no find this player" );
}