Advertisement
Adam445

Untitled

May 27th, 2019
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | None | 0 0
  1. #include maps\mp\_utility;
  2. #include maps\mp\gametypes\_hud_util;
  3.  
  4. main()
  5. {
  6. maps\mp\gametypes\war::main();
  7.  
  8. makeDvarServerInfo( "ui_hud_hardcore", 1 );
  9. makeDvarServerInfo( "cg_drawCrosshair", 0 );
  10. makeDvarServerInfo( "cg_drawCrosshairNames", 0 );
  11. makeDvarServerInfo( "ui_hud_hitnotify", 0 );
  12. setDvar( "ui_hud_hardcore", 1 );
  13. setDvar( "cg_drawCrosshair", 0 );
  14. setDvar( "cg_drawCrosshairNames", 0 );
  15. setDvar( "ui_hud_hitnotify", 0 );
  16. // setDvar( "scr_player_numlives", 1 );
  17. setDvar( "scr_team_fftype", 1 );
  18. setDvar( "scr_hardpoint_allowartillery", 0 );
  19. setDvar( "scr_hardpoint_allowuav", 0 );
  20. setDvar( "scr_hardpoint_allowsupply", 0 );
  21. setDvar( "scr_hardpoint_allowhelicopter", 0 );
  22. setDvar( "scr_hardpoint_allowac130", 0 );
  23. setDvar( "scr_hardpoint_allowradar", 0 );
  24. setDvar( "scr_hardpoint_allowsupplycache", 0 );
  25. setDvar( "scr_player_maxhealth", 30 );
  26. setDvar( "scr_player_healthregentime", 0 );
  27. setDvar( "scr_game_spectatetype", 2 );
  28. setDvar( "scr_game_allowkillcam", 0 );
  29. // setDvar( "scr_war_hc_roundlimit", 3 );
  30. setDvar( "scr_war_hc_scorelimit", 75 );
  31. setDvar( "scr_war_hc_timelimit", 15 );
  32. setDvar( "scr_team_respawntime", 20 );
  33. setDvar( "ui_hud_showtimer", 0 );
  34. setDvar( "ui_hud_showscore", 0 );
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement