Advertisement
brague

COD2 comando log de errores -set logfile 2

Feb 14th, 2021 (edited)
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.73 KB | None | 0 0
  1.  
  2.  
  3.  
  4. // ******************************************************** *****************
  5. // ANTI-CHEAT SETTINGS (0 = off, 1 = on)
  6. // ***************************************************************** ********
  7.  
  8. set sv_disableClientConsole "0" // Disable Your Clients from using thier Console.
  9. set cl_autocmd "0" // 0 or 1, 0 means, console typing is treated as a "say". 1 is treated as a command. EX. "kill"
  10. set sv_floodProtect "1" // Protect from message flooding
  11. set sv_cheats "0" // Disable cheats, ie No Clip, God, weapons and so forth
  12. set sv_pure "1" // Don't allow new or hacked .iwd from clients
  13. set g_no_script_spam "0" // Disable Binded Script Spamming on Server
  14.  
  15.  
  16. ///////////////
  17. // GAMETYPES //
  18. ///////////////
  19.  
  20. // sd (Search & Destroy)
  21. // hq (Headquarters)
  22. // ctf (Capture The Flag)
  23. // dm (Death Match)
  24. // tdm (Team Death Match)
  25. //--------------------------
  26. // htf (Hold The Flag)
  27. // ihtf (Individual Hold The Flag)
  28. // lts (Last Team Standing)
  29. // lms (Last Man Standing)
  30. // re (Retrieval)
  31.  
  32. // Remember to place word "gametype" infront of map, along with desired Type, if Rotation contains Mixed Gametypes.
  33.  
  34.  
  35. // ****************************************************************************************** ***************
  36. // MAP ROTATION SETTINGS (Choose only ONE Rotation)
  37. // ************************************************************************************************* **********
  38.  
  39. // NOTE! Only ONE Rotation can be used for your Server. Make sure all others except the one you picked are marked "//set"
  40. // NOTE! This Includes "Optional" & "Custom" Rotations.
  41.  
  42. set sv_mapRotationCurrent ""
  43.  
  44. set g_gametype "ctf" //Set Your Desired Gametype, if All Maps Share Same Gametype, then this dvar is used.
  45.  
  46. //set sv_maprotation "map mp_dawnville map mp_farmhouse map mp_brecourt map mp_burgundy map mp_trainstation map mp_carentan map mp_leningrad map mp_matmata map mp_downtown map mp_railyard map mp_toujane map mp_breakout"
  47.  
  48. // TEST MAP ROTAION AREA
  49. //set sv_maprotation "map mp_carentan"
  50.  
  51.  
  52. // MAIN CUSTOM
  53. //set sv_maprotation "gametype ihtf map mp_farmhouse gametype lms map mp_downtown gametype dm map mp_dawnville gametype tdm map mp_carentan gametype ctf map mp_burgundy gametype tdm map mp_brecourt gametype hq map mp_breakout gametype dm map mp_trainstation gametype tdm map mp_toujane gametype ihtf map mp_railyard gametype tdm map mp_matmata gametype htf map mp_leningrad"
  54. //------------------------------------------------------------------------------------------------------------
  55. //////////////
  56. // OPTIONAL //
  57. //////////////
  58.  
  59. // LARGE MIXED GAMETYPE MAP ROTATION
  60.  
  61. //set sv_maprotation "gametype htf map mp_farmhouse gametype ihtf map mp_downtown gametype lms map mp_decoy gametype lts map mp_dawnville gametype dm map mp_carentan gametype ctf map mp_burgundy gametype tdm map mp_brecourt gametype re map mp_breakout gametype hq map mp_trainstation gametype sd map mp_toujane gametype ihtf map mp_railyard gametype tdm map mp_matmata gametype htf map mp_leningrad gametype lms map mp_farmhouse gametype re map mp_downtown gametype hq map mp_burgundy gametype re map mp_brecourt gametype lts map mp_breakout gametype htf map mp_trainstation gametype dm map mp_toujane gametype ihtf map mp_railyard gametype ctf map mp_matmata gametype sd map mp_leningrad"
  62. ------------------------------------------------------------------------------------------------------------
  63.  
  64. // ********************************************************************************************* *****************
  65. // CUSTOM MAP ROTATION FOR ALL MAPS & ALL GAMETYPES / RANDOM ROTATIONS
  66. // ***************************************************************************************************** ********
  67. //-------------------------
  68. // CUSTOM MAP ROTATION # 1
  69.  
  70. //set sv_maprotation "gametype htf map mp_farmhouse gametype ihtf map mp_downtown gametype lms map mp_decoy gametype lts map mp_dawnville gametype dm map mp_carentan gametype ctf map mp_burgundy gametype tdm map mp_brecourt gametype re map mp_breakout gametype hq map mp_trainstation gametype sd map mp_toujane gametype ihtf map mp_railyard gametype tdm map mp_matmata gametype htf map mp_leningrad"
  71. //-------------------------
  72. // CUSTOM MAP ROTATION # 2
  73.  
  74. //set sv_maprotation "gametype tdm map mp_farmhouse gametype ctf map mp_downtown gametype ihtf map mp_decoy gametype re map mp_dawnville gametype hq map mp_carentan gametype dm map mp_burgundy gametype ctf map mp_brecourt gametype ihtf map mp_breakout gametype lms map mp_trainstation gametype dm map mp_toujane gametype re map mp_railyard gametype htf map mp_matmata gametype sd map mp_leningrad"
  75.  
  76.  
  77. //-------------------------
  78.  
  79.  
  80. // NOTE! DO NOT Specify "map_rotate" here, unless your command line for COD2 shortcut does not Contain "+ map_rotate".
  81. // NOTE! Command Line Should Read: "C:\......\CoD2MP_s.exe" +set fs_game YOUR MOD FOLDER NAME +set dedicated 2 +exec Server.cfg +map_rotate
  82.  
  83. // NOTE! The ( +set fs_game YOUR MOD ) fs_game "folder" in this case "YOUR MOD" can have the name of anything. Nick name perhaps?
  84.  
  85. // NOTE! If Both MAP ROTATE Are Present, Server WILL Skip First Map In Rotation. It rotates twice. First in command line, then here.
  86.  
  87. //map_rotate
  88.  
  89. // Start the map, changes in effect and the match starts.
  90. map "mp_trainstation"
  91.  
  92. // Mods, Execute your Server Mod Configuration Files here.
  93. //exec MOD_FOR_SERVER.cfg
  94.  
  95. Finally add the extra files to the main server.cfg by adding the following lines at the end of the file:
  96.  
  97. wait
  98. exec gametypes.cfg
  99. wait
  100. exec weapons_vehicles.cfg
  101. wait
  102. exec perks.cfg
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127. -------------------------------------------------------------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement