Flametail has written
ok, how do I make it so that players can only join one team? Like, players can only join as terrorists (or spectators), and the admins can be Counter-Terrorists only becuase they can use the makect command.
Try this in standard mode(I`m not so sure it works :/)
1
2
3
4
5
6
7
8
9
2
3
4
5
6
7
8
9
_usgn = [b]ENTERADMINUSGNHERE[/b] addhook("startround","adminteam") function adminteam(id) if player(id,"usgn") == _usgn then parse("makect "..id) else parse("maket "..id) end end