RodzynBWA

Get clients

Mar 12th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. public void OnPluginStart() {
  2. HookEvent("round_start", EnableAutoSpawn);
  3. ...
  4. }
  5.  
  6. public Action EnableAutoSpawn(Event event, const char[] name){
  7. for (int client = 1; client <= MaxClients; ++client) {
  8. if (IsValidClient && GetClientTeam(client) == 3) {
  9. ServerCommand("mp_respawn_on_death_ct 1");
  10. CreateTimer(1.0, DisableAS, client, TIMER_REPEAT);
  11. }
  12. }
  13. }
Add Comment
Please, Sign In to add comment