//////////////////////////////////////////////////////////////////////////////////// // SVR Mod, for CoD Support site: http://aigaming.net | number_07@hotmail.com // //////////////////////////////////////////////////////////////////////////////////// // ADMINS: Be very careful when editing this file, as the server may crash! // Edit the text at the end of each line. Do not change anything else. // Maximum rules available: 10 // The "title" must be one word with no spaces. Keep it as short as possible. // It cannot have the same name as any other existing dvar in the game or mod. // I was going to recommend that each title begin with a ! (like Battlefield) // but CoD does not allow that. You could use a different character though: // _language // _hopping // Color Codes: // ^1 = Red // ^2 = Green // ^3 = Yellow // ^4 = Blue // ^5 = Cyan // ^6 = Magenta // ^7 = White // ^8 = Dark Purple // ^9 = Gray // ^0 = Black init() { game["svrRules"]["title1"] = "language" ; game["svrRules"]["text1"] = "Please keep the language clean, or be kicked" ; game["svrRules"]["title2"] = "Rule2" ; // 2nd title game["svrRules"]["text2"] = "" ; // 2nd rule game["svrRules"]["title3"] = "Rule3" ; // 3rd title game["svrRules"]["text3"] = "" ; // 3rd rule game["svrRules"]["title4"] = "Rule4" ; // 4th title game["svrRules"]["text4"] = "" ; // 4th rule game["svrRules"]["title5"] = "Rule5" ; // 5th title game["svrRules"]["text5"] = "" ; // 5th rule game["svrRules"]["title6"] = "Rule6" ; // 6th title game["svrRules"]["text6"] = "" ; // 6th rule game["svrRules"]["title7"] = "Rule7" ; // 7th title game["svrRules"]["text7"] = "" ; // 7th rule game["svrRules"]["title8"] = "Rule8" ; // 8th title game["svrRules"]["text8"] = "" ; // 8th rule game["svrRules"]["title9"] = "Rule9" ; // 9th title game["svrRules"]["text9"] = "" ; // 9th rule game["svrRules"]["title10"] = "Rule10"; // 10th title game["svrRules"]["text10"] = "" ; // 10th rule }