Advertisement
Guest User

Untitled

a guest
Mar 19th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /// CORE SETTINGS, DON'T MODIFY UNLESS YOU KNOW WHAT YOU'RE DOING CUNT!
  2.  
  3. // set up a few vars
  4.  
  5. fac_restrict_list = ds_list_create()
  6. map_restrict_list = ds_list_create()
  7.  
  8. ///MASTERSERVER/////////////////////////////////////////////////
  9.                                                             ////
  10. // Disable the master-server?                               ////
  11.                                                             ////
  12. // TRUE = Yes, disable it                                   ////
  13. // FALSE = No, connect to it                                ////
  14.                                                             ////
  15. kill_ms = false                                             ////
  16.                                                             ////
  17. // If we DO connect, what/where do we connect?              ////
  18.                                                             ////
  19. real_resolve = "www.kyotovideogameconcern.com"              ////
  20.                                                             ////
  21. ////////////////////////////////////////////////////////////////
  22.  
  23. ///DEMO VERSION/////////////////////////////////////////////////
  24.                                                             ////
  25. // Enable/Disable features                                  ////
  26.                                                             ////
  27. enable_online = true                                        ////
  28. enable_competitive = true                                   ////
  29. enable_skirmish = true                                      ////
  30. enable_campaign = true                                      ////
  31. enable_editor = true                                        ////
  32. enable_mapgen = true                                        ////
  33. enable_ruled = true                                         ////
  34. enable_console = true                                       ////
  35. enable_updates = true                                       ////
  36.                                                             ////
  37. // what ruleset does the game consider as the default?      ////
  38.                                                             ////
  39. ruleset_default = "default"                                 ////
  40.                                                             ////
  41. // Do we boot into a map as soon as the main menu is loaded?////
  42. // If so, what map?                                         ////
  43.                                                             ////
  44. boot_map = ""                                               ////
  45.                                                             ////
  46. // and what ruleset?                                        ////
  47.                                                             ////
  48. boot_ruleset = ruleset_default                              ////
  49.                                                             ////
  50. // And what mode?                                           ////
  51. // 0 = Campaign, 1 = Skirmish, 2 = Editor, 3 = Competitive  ////
  52.                                                             ////
  53. boot_mode = 0                                               ////
  54.                                                             ////
  55. // Only play the game IF we connect to the MS?              ////
  56. // If TRUE, quit the game if we fail to connect             ////
  57.                                                             ////
  58. ms_preq = false                                             ////
  59.                                                             ////
  60. // Quit the game if we're passed a date                     ////
  61.                                                             ////
  62. limit_day = 31                                              ////
  63. limit_month = 12                                            ////
  64. limit_year = 2999                                           ////
  65.                                                             ////
  66. // Restrict Access to ONLY these factions?                  ////
  67. // Blank = no restrictions                                  ////
  68.                                                             ////
  69. //ds_list_add( fac_restrict_list , "Humanity" )             ////
  70.                                                             ////
  71. // Restrict Access to ONLY these rulesets? ( From skirmish )////
  72. // Blank = no restrictions                                  ////
  73.                                                             ////
  74. //ds_list_add( rule_restrict_list , "demo" )                ////
  75.                                                             ////
  76. // Restrict Access to ONLY these maps? ( From skirmish )    ////
  77. // Blank = no restrictions                                  ////
  78.                                                             ////
  79. //ds_list_add( map_restrict_list , "KVGC Urban Chaos ( 4 ) ( FFA )" )
  80. //ds_list_add( map_restrict_list , "KVGC Arctic duel ( 2 ) ( FFA )" )
  81.                                                             ////
  82. // Do we end the game after completing a map? What map?     ////
  83. // Blank = Disable                                          ////
  84.                                                             ////
  85. map_end = ""                                                ////
  86.                                                             ////
  87. // Do we play a video after ending the game? What video?    ////
  88.                                                             ////
  89. video_end = ""                                              ////
  90.                                                             ////
  91. // What do we do when the video finishes?                   ////
  92. // Or if a video isn't specified?                           ////
  93.                                                             ////
  94. // 0 = Goto main menu                                       ////
  95. // 1 = Quit the game                                        ////
  96. // 2 = Restart the game                                     ////
  97.                                                             ////
  98. video_end_action = 0                                        ////
  99.                                                             ////
  100. // Do we open a URL when this happens? If so what URL?      ////
  101.                                                             ////
  102. end_url = ""                                                ////
  103.                                                             ////                                                  
  104. ////////////////////////////////////////////////////////////////
  105.  
  106. ///STEAM////////////////////////////////////////////////////////
  107.                                                             ////  
  108. enable_steam = true                                         ////
  109. enable_steam_achiements = true                              ////  
  110.                                                             ////
  111. ////////////////////////////////////////////////////////////////
  112.  
  113. ///CONTENT//////////////////////////////////////////////////////
  114.                                                             ////  
  115. zip_name = ""                                               ////
  116.                                                             ////
  117. ////////////////////////////////////////////////////////////////
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement