Quote:
Originally Posted by Podarok
Ok, thanks! But Really I can do it! I know, I have seen it on the other server. So the problem is that I don't know how to change it, the only thing I know how to
Code:
get_user_team ( id, szTeam, 15 ) to cs_get_user_team ( id )
But I have no idea how to change harder constructions for example :
Code:
if ( iTeam == get_user_team( players[i] ) )
|
It's pretty easy.
PHP Code:
new iTeam
if ( iTeam == get_user_team( players[i] ) )
PHP Code:
new CsTeams: iTeam;
if(iTeam == cs_get_user_team(players[i]))
You have to change iTeam to avoid getting a tag mismatch during compilation
__________________