M_BaseInfoCFG.lua 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. M_BaseInfoCFG = {}
  2. function M_BaseInfoCFG:getData(key)
  3. if self.datas == nil then
  4. return nil
  5. end
  6. return self.datas[key]
  7. end
  8. function M_BaseInfoCFG:init()
  9. self.datas = {}
  10. self.datas["LoginTokenLifeTime"] = {Key = "LoginTokenLifeTime", Value = 0, StringValue = ""}
  11. self.datas["base_gold"] = {Key = "base_gold", Value = 0, StringValue = ""}
  12. self.datas["base_ticket"] = {Key = "base_ticket", Value = 0, StringValue = ""}
  13. self.datas["base_chip"] = {Key = "base_chip", Value = 0, StringValue = ""}
  14. self.datas["signatureMaxLength"] = {Key = "signatureMaxLength", Value = 80, StringValue = ""}
  15. self.datas["giftDepreciation"] = {Key = "giftDepreciation", Value = 100, StringValue = ""}
  16. self.datas["friendLimit"] = {Key = "friendLimit", Value = 50, StringValue = ""}
  17. self.datas["onlineRewardTimeInterval"] = {Key = "onlineRewardTimeInterval", Value = 30, StringValue = ""}
  18. self.datas["onlineRewardGold"] = {Key = "onlineRewardGold", Value = 500, StringValue = ""}
  19. self.datas["noticeCdTime"] = {Key = "noticeCdTime", Value = 30, StringValue = ""}
  20. self.datas["all_notice_player"] = {Key = "all_notice_player", Value = 50, StringValue = ""}
  21. self.datas["worldChatInterval"] = {Key = "worldChatInterval", Value = 5, StringValue = ""}
  22. self.datas["almsGoldCount"] = {Key = "almsGoldCount", Value = 5000, StringValue = ""}
  23. self.datas["almsLimit"] = {Key = "almsLimit", Value = 0, StringValue = ""}
  24. self.datas["almsMaxCount"] = {Key = "almsMaxCount", Value = 3, StringValue = ""}
  25. self.datas["almsWaitTime"] = {Key = "almsWaitTime", Value = 30, StringValue = ""}
  26. self.datas["almsWaitAddTime"] = {Key = "almsWaitAddTime", Value = 30, StringValue = ""}
  27. self.datas["nickNameMaxLength"] = {Key = "nickNameMaxLength", Value = 8, StringValue = ""}
  28. self.datas["isOpenGuide"] = {Key = "isOpenGuide", Value = 0, StringValue = ""}
  29. self.datas["isAutoConnect"] = {Key = "isAutoConnect", Value = 0, StringValue = ""}
  30. self.datas["isInsertAnySdk"] = {Key = "isInsertAnySdk", Value = 0, StringValue = ""}
  31. self.datas["sendGiftLogMaxCount"] = {Key = "sendGiftLogMaxCount", Value = 50, StringValue = ""}
  32. self.datas["sendMailLogMaxCount"] = {Key = "sendMailLogMaxCount", Value = 50, StringValue = ""}
  33. self.datas["UpdateIcon"] = {Key = "UpdateIcon", Value = 100, StringValue = ""}
  34. self.datas["modifyNicknameCost"] = {Key = "modifyNicknameCost", Value = 100, StringValue = ""}
  35. self.datas["costType"] = {Key = "costType", Value = 2, StringValue = ""}
  36. self.datas["exchangeMaxCount"] = {Key = "exchangeMaxCount", Value = 50, StringValue = ""}
  37. self.datas["updateGameList"] = {Key = "updateGameList", Value = 300, StringValue = ""}
  38. self.datas["updateMailPoint"] = {Key = "updateMailPoint", Value = 30, StringValue = ""}
  39. self.datas["isOfflineVersion"] = {Key = "isOfflineVersion", Value = 0, StringValue = ""}
  40. self.datas["defaultvip"] = {Key = "defaultvip", Value = 0, StringValue = ""}
  41. self.datas["firstGameId"] = {Key = "firstGameId", Value = 1, StringValue = ""}
  42. self.datas["isApple"] = {Key = "isApple", Value = 0, StringValue = ""}
  43. self.datas["lotteryBigPrize"] = {Key = "lotteryBigPrize", Value = 200, StringValue = ""}
  44. self.datas["lotterySmallPrize"] = {Key = "lotterySmallPrize", Value = 1000, StringValue = ""}
  45. self.datas["ticketLotteryCost"] = {Key = "ticketLotteryCost", Value = 20, StringValue = ""}
  46. self.datas["lotteryBoxCount"] = {Key = "lotteryBoxCount", Value = 12, StringValue = ""}
  47. self.datas["lotteryBaseX"] = {Key = "lotteryBaseX", Value = 4, StringValue = ""}
  48. self.datas["lotteryAddy"] = {Key = "lotteryAddy", Value = 3, StringValue = ""}
  49. self.datas["thankYouJoinExchangeTicket"] = {Key = "thankYouJoinExchangeTicket", Value = 50, StringValue = ""}
  50. self.datas["thankYouExchangeLimit"] = {Key = "thankYouExchangeLimit", Value = 20, StringValue = ""}
  51. self.datas["maxCountLotteryByGem"] = {Key = "maxCountLotteryByGem", Value = 3, StringValue = ""}
  52. self.datas["DialLotteryNoMoneyRefVal"] = {Key = "DialLotteryNoMoneyRefVal", Value = 1000, StringValue = ""}
  53. self.datas["LotteryChipMinVal"] = {Key = "LotteryChipMinVal", Value = 300, StringValue = ""}
  54. self.datas["SLotteryHighChipEachDayJudgeLimitVipUp"] = {Key = "SLotteryHighChipEachDayJudgeLimitVipUp", Value = 2, StringValue = ""}
  55. self.datas["tankkYouCountLimit"] = {Key = "tankkYouCountLimit", Value = 999, StringValue = ""}
  56. self.datas["RoomSendVipCount"] = {Key = "RoomSendVipCount", Value = 2, StringValue = ""}
  57. self.datas["SendVipCount"] = {Key = "SendVipCount", Value = 2, StringValue = ""}
  58. self.datas["continuousVipCount"] = {Key = "continuousVipCount", Value = 2, StringValue = ""}
  59. self.datas["continuousSendSpeakerCost"] = {Key = "continuousSendSpeakerCost", Value = 50, StringValue = ""}
  60. self.datas["continuousSendSpeakerInterval"] = {Key = "continuousSendSpeakerInterval", Value = 120, StringValue = ""}
  61. self.datas["continuousSendTime1"] = {Key = "continuousSendTime1", Value = 10, StringValue = ""}
  62. self.datas["continuousSendTime2"] = {Key = "continuousSendTime2", Value = 100, StringValue = ""}
  63. self.datas["continuousSendTime3"] = {Key = "continuousSendTime3", Value = 1000, StringValue = ""}
  64. self.datas["continuousSpeakerMaxCount"] = {Key = "continuousSpeakerMaxCount", Value = 1000, StringValue = ""}
  65. self.datas["ptotectTime"] = {Key = "ptotectTime", Value = 604800, StringValue = ""}
  66. self.datas["rechargeNumSpeaker"] = {Key = "rechargeNumSpeaker", Value = 30, StringValue = ""}
  67. self.datas["silverMember"] = {Key = "silverMember", Value = 100, StringValue = ""}
  68. self.datas["goldMember"] = {Key = "goldMember", Value = 1000, StringValue = ""}
  69. self.datas["notifyEnterGameVipLevel"] = {Key = "notifyEnterGameVipLevel", Value = 4, StringValue = ""}
  70. self.datas["DiceCondition"] = {Key = "DiceCondition", Value = 3000, StringValue = ""}
  71. self.datas["MinLifeTime"] = {Key = "MinLifeTime", Value = 1800, StringValue = ""}
  72. self.datas["MaxLifeTime"] = {Key = "MaxLifeTime", Value = 7200, StringValue = ""}
  73. self.datas["MaxGold"] = {Key = "MaxGold", Value = 20000000, StringValue = ""}
  74. self.datas["DiscountVIP"] = {Key = "DiscountVIP", Value = 11, StringValue = ""}
  75. self.datas["DiscountValue"] = {Key = "DiscountValue", Value = 100, StringValue = ""}
  76. self.datas["StarMax"] = {Key = "StarMax", Value = 15, StringValue = ""}
  77. self.datas["StarBase"] = {Key = "StarBase", Value = 5, StringValue = ""}
  78. self.datas["StarRate"] = {Key = "StarRate", Value = 5, StringValue = ""}
  79. self.datas["RobotNoticeMinTime"] = {Key = "RobotNoticeMinTime", Value = 120, StringValue = ""}
  80. self.datas["RobotNoticeMaxTime"] = {Key = "RobotNoticeMaxTime", Value = 180, StringValue = ""}
  81. self.datas["LockBagRate2"] = {Key = "LockBagRate2", Value = 100, StringValue = ""}
  82. self.datas["LockBagRate3"] = {Key = "LockBagRate3", Value = 1000, StringValue = ""}
  83. self.datas["LockBagRate4"] = {Key = "LockBagRate4", Value = 1000, StringValue = ""}
  84. self.datas["GiveBeadRevised"] = {Key = "GiveBeadRevised", Value = 0, StringValue = ""}
  85. self.datas["IsShowStarLottery"] = {Key = "IsShowStarLottery", Value = 0, StringValue = ""}
  86. self.datas["ShowGamesDay"] = {Key = "ShowGamesDay", Value = 0, StringValue = ""}
  87. self.datas["ShowGamesLv"] = {Key = "ShowGamesLv", Value = 0, StringValue = ""}
  88. self.datas["DaliyQuestLevel"] = {Key = "DaliyQuestLevel", Value = 20, StringValue = ""}
  89. self.datas["CDKEYErrorCountLimit"] = {Key = "CDKEYErrorCountLimit", Value = 5, StringValue = ""}
  90. self.datas["WriteMailVipLimit"] = {Key = "WriteMailVipLimit", Value = 8, StringValue = ""}
  91. self.datas["ChangeHeadVipLimit"] = {Key = "ChangeHeadVipLimit", Value = 2, StringValue = ""}
  92. self.datas["EnterFriendRoomVipLimit"] = {Key = "EnterFriendRoomVipLimit", Value = 7, StringValue = ""}
  93. self.datas["RetChipDays"] = {Key = "RetChipDays", Value = 14, StringValue = ""}
  94. self.datas["RetChipPercent"] = {Key = "RetChipPercent", Value = 100, StringValue = ""}
  95. self.datas["BuyPuppetGemPrice"] = {Key = "BuyPuppetGemPrice", Value = 10, StringValue = ""}
  96. self.datas["LabaLotteryCostNum"] = {Key = "LabaLotteryCostNum", Value = 100, StringValue = ""}
  97. self.datas["LabaLotteryFishLevelLimit"] = {Key = "LabaLotteryFishLevelLimit", Value = 19, StringValue = ""}
  98. self.datas["ShopShowRecharge"] = {Key = "ShopShowRecharge", Value = 2000, StringValue = ""}
  99. self.datas["ShopShowNum"] = {Key = "ShopShowNum", Value = 3, StringValue = ""}
  100. self.datas["ShopShowBuyPrice"] = {Key = "ShopShowBuyPrice", Value = 30, StringValue = ""}
  101. self.datas["ShopShowMinPrice"] = {Key = "ShopShowMinPrice", Value = 1, StringValue = ""}
  102. self.datas["IsOpenJJC"] = {Key = "IsOpenJJC", Value = 1, StringValue = ""}
  103. self.datas["WpActRankRate"] = {Key = "WpActRankRate", Value = 10000, StringValue = ""}
  104. self.datas["FishChipLimit"] = {Key = "FishChipLimit", Value = 100, StringValue = ""}
  105. self.datas["BuyPumpkinPrice"] = {Key = "BuyPumpkinPrice", Value = 30, StringValue = ""}
  106. self.datas["BuyPumpkinMaxCountEachDay"] = {Key = "BuyPumpkinMaxCountEachDay", Value = 10, StringValue = ""}
  107. self.datas["ForceUpdateGameCfg"] = {Key = "ForceUpdateGameCfg", Value = 2, StringValue = "2017-11-28 04:00:00"}
  108. self.datas["WorldCupWaterCollection"] = {Key = "WorldCupWaterCollection", Value = 500, StringValue = ""}
  109. self.datas["WorldCupWaterLimit"] = {Key = "WorldCupWaterLimit", Value = 50000000, StringValue = ""}
  110. self.datas["DayRechargeLimit"] = {Key = "DayRechargeLimit", Value = 2000, StringValue = ""}
  111. self.datas["New7DayAccSignRewardStd"] = {Key = "New7DayAccSignRewardStd", Value = nil, StringValue = "2018-07-16 08:00:00"}
  112. self.datas["continuousSendDiscountVip"] = {Key = "continuousSendDiscountVip", Value = 10, StringValue = ""}
  113. self.datas["continuousSendDiscount"] = {Key = "continuousSendDiscount", Value = 10, StringValue = ""}
  114. self.datas["Bw.RoomDissolveClock"] = {Key = "Bw.RoomDissolveClock", Value = 600, StringValue = ""}
  115. self.datas["Bw.RoomKickClock"] = {Key = "Bw.RoomKickClock", Value = 180, StringValue = ""}
  116. self.datas["Bw.RoomAutoBalanceClock"] = {Key = "Bw.RoomAutoBalanceClock", Value = 180, StringValue = ""}
  117. self.datas["WJLW.GoldPoolBaseScore"] = {Key = "WJLW.GoldPoolBaseScore", Value = 50000, StringValue = ""}
  118. self.datas["WJLW.GoldPercent"] = {Key = "WJLW.GoldPercent", Value = 1000, StringValue = ""}
  119. self.datas["WJLW.GoldEquipTime"] = {Key = "WJLW.GoldEquipTime", Value = 120, StringValue = ""}
  120. self.datas["WJLW.GoldBalanceTime"] = {Key = "WJLW.GoldBalanceTime", Value = 10, StringValue = ""}
  121. self.datas["WJLW.GoldRp"] = {Key = "WJLW.GoldRp", Value = 4, StringValue = ""}
  122. self.datas["WJLW.GoldRm"] = {Key = "WJLW.GoldRm", Value = 1, StringValue = ""}
  123. self.datas["WJLW.GoldCheckRate"] = {Key = "WJLW.GoldCheckRate", Value = nil, StringValue = "5,9"}
  124. self.datas["WJLW.RechargePercent"] = {Key = "WJLW.RechargePercent", Value = 10000, StringValue = ""}
  125. self.datas["WJLW.RechargePoolBaseScore"] = {Key = "WJLW.RechargePoolBaseScore", Value = 10000000, StringValue = ""}
  126. self.datas["WJLW.PriRewardMaxCount"] = {Key = "WJLW.PriRewardMaxCount", Value = 30, StringValue = ""}
  127. self.datas["WJLW.GlobalRewardMaxCount"] = {Key = "WJLW.GlobalRewardMaxCount", Value = 5, StringValue = ""}
  128. self.datas["WJLW.GlobalEquipRecordMaxCount"] = {Key = "WJLW.GlobalEquipRecordMaxCount", Value = 30, StringValue = ""}
  129. self.datas["WJLW.IsOpen"] = {Key = "WJLW.IsOpen", Value = 1, StringValue = ""}
  130. self.datas["WJLW.RechargeRobotWinFirstPrize"] = {Key = "WJLW.RechargeRobotWinFirstPrize", Value = 25000, StringValue = ""}
  131. self.datas["WJLW.RechargeMajorRobotBet"] = {Key = "WJLW.RechargeMajorRobotBet", Value = nil, StringValue = "0,1"}
  132. self.datas["WJLW.RechargeOtherRobotBet"] = {Key = "WJLW.RechargeOtherRobotBet", Value = nil, StringValue = "0,3"}
  133. self.datas["WJLW.GoldMajorRobotBet"] = {Key = "WJLW.GoldMajorRobotBet", Value = nil, StringValue = "0,1"}
  134. self.datas["WJLW.GoldOtherRobotBet"] = {Key = "WJLW.GoldOtherRobotBet", Value = nil, StringValue = "0,5"}
  135. self.datas["SupplementSignInFrequency"] = {Key = "SupplementSignInFrequency", Value = 5, StringValue = ""}
  136. self.datas["SupplementSignInPrice"] = {Key = "SupplementSignInPrice", Value = 20, StringValue = ""}
  137. self.datas["SupplementSignInMarkup"] = {Key = "SupplementSignInMarkup", Value = 0, StringValue = ""}
  138. self.datas["Suqichujichoujiangbinjing"] = {Key = "Suqichujichoujiangbinjing", Value = 100000, StringValue = ""}
  139. self.datas["Suqigaojichoujiangchongzhi"] = {Key = "Suqigaojichoujiangchongzhi", Value = 2, StringValue = ""}
  140. self.datas["Suqichujichoujiangxiaohao"] = {Key = "Suqichujichoujiangxiaohao", Value = 1, StringValue = ""}
  141. self.datas["Suqigaojichoujiangxiaohao"] = {Key = "Suqigaojichoujiangxiaohao", Value = 10, StringValue = ""}
  142. self.datas["bindCount"] = {Key = "bindCount", Value = 10, StringValue = ""}
  143. self.datas["SendVerifyCodeInterval"] = {Key = "SendVerifyCodeInterval", Value = 60, StringValue = ""}
  144. self.datas["bindCodeExpiryDate"] = {Key = "bindCodeExpiryDate", Value = 60, StringValue = ""}
  145. self.datas["ChargingCharges"] = {Key = "ChargingCharges", Value = 10, StringValue = ""}
  146. self.datas["Guoqingchoujiangfuka"] = {Key = "Guoqingchoujiangfuka", Value = 100000, StringValue = ""}
  147. self.datas["Guoqingchujichoujiangxiaohao"] = {Key = "Guoqingchujichoujiangxiaohao", Value = 10, StringValue = ""}
  148. self.datas["Guoqinggaojichoujiangxiaohao"] = {Key = "Guoqinggaojichoujiangxiaohao", Value = 100, StringValue = ""}
  149. self.datas["CollectionExchange"] = {Key = "CollectionExchange", Value = 10, StringValue = ""}
  150. self.datas["TheNumberOfSharkLotteryOpenings"] = {Key = "TheNumberOfSharkLotteryOpenings", Value = 30, StringValue = ""}
  151. self.datas["Greatsharksaredeterminedtoconsumegoldcoins"] = {Key = "Greatsharksaredeterminedtoconsumegoldcoins", Value = 300000, StringValue = ""}
  152. self.datas["Agiantsharkisaleopard"] = {Key = "Agiantsharkisaleopard", Value = 7, StringValue = ""}
  153. self.datas["GiantsharkDrop"] = {Key = "GiantsharkDrop", Value = 100, StringValue = ""}
  154. self.datas["GrowthFund1"] = {Key = "GrowthFund1", Value = 20, StringValue = ""}
  155. self.datas["GrowthFund2"] = {Key = "GrowthFund2", Value = 7, StringValue = ""}
  156. self.datas["Xjhdsc100"] = {Key = "Xjhdsc100", Value = 24, StringValue = ""}
  157. self.datas["Xjhdsc1000"] = {Key = "Xjhdsc1000", Value = 25, StringValue = ""}
  158. self.datas["NewSpring1"] = {Key = "NewSpring1", Value = 24, StringValue = ""}
  159. self.datas["NewSpring2"] = {Key = "NewSpring2", Value = 25, StringValue = ""}
  160. self.datas["RosefinchTreasure"] = {Key = "RosefinchTreasure", Value = 250000, StringValue = ""}
  161. self.datas["TherionTiger"] = {Key = "TherionTiger", Value = 200, StringValue = ""}
  162. self.datas["FishGrow"] = {Key = "FishGrow", Value = 6, StringValue = ""}
  163. self.datas["Tfr"] = {Key = "Tfr", Value = 10, StringValue = ""}
  164. self.datas["LuckNumber"] = {Key = "LuckNumber", Value = 1, StringValue = ""}
  165. self.datas["IntegralRecharge"] = {Key = "IntegralRecharge", Value = 1, StringValue = ""}
  166. self.datas["IntegralSingle"] = {Key = "IntegralSingle", Value = 20, StringValue = ""}
  167. self.datas["IntegralOneSingle"] = {Key = "IntegralOneSingle", Value = 180, StringValue = ""}
  168. self.datas["TimeShopOne"] = {Key = "TimeShopOne", Value = 1, StringValue = ""}
  169. self.datas["TimeShopTen"] = {Key = "TimeShopTen", Value = 10, StringValue = ""}
  170. self.datas["IntegralReward1"] = {Key = "IntegralReward1", Value = 204, StringValue = ""}
  171. self.datas["IntegralReward2"] = {Key = "IntegralReward2", Value = 205, StringValue = ""}
  172. self.datas["CannonSingle1"] = {Key = "CannonSingle1", Value = 50, StringValue = ""}
  173. self.datas["CannonSingle2"] = {Key = "CannonSingle2", Value = 490, StringValue = ""}
  174. self.datas["CannonItemId"] = {Key = "CannonItemId", Value = 2, StringValue = ""}
  175. self.datas["CannonItemId2"] = {Key = "CannonItemId2", Value = 8000, StringValue = ""}
  176. self.datas["CannonItemId3"] = {Key = "CannonItemId3", Value = 1, StringValue = ""}
  177. self.datas["Arena"] = {Key = "Arena", Value = 531, StringValue = ""}
  178. self.datas["TurretLimit"] = {Key = "TurretLimit", Value = 10000, StringValue = ""}
  179. self.datas["TurretPermanent"] = {Key = "TurretPermanent", Value = 1000000, StringValue = ""}
  180. self.datas["HammerId"] = {Key = "HammerId", Value = 217, StringValue = ""}
  181. self.datas["Hammer"] = {Key = "Hammer", Value = 100000, StringValue = ""}
  182. self.datas["JackpotGold"] = {Key = "JackpotGold", Value = 10000000, StringValue = ""}
  183. self.datas["Recharge"] = {Key = "Recharge", Value = 20, StringValue = ""}
  184. self.datas["MonsterMeltingCount"] = {Key = "MonsterMeltingCount", Value = 80, StringValue = ""}
  185. self.datas["MonsterMeltingItem"] = {Key = "MonsterMeltingItem", Value = 255, StringValue = ""}
  186. self.datas["MonsterMelting1"] = {Key = "MonsterMelting1", Value = 20, StringValue = ""}
  187. self.datas["achievement1"] = {Key = "achievement1", Value = 100, StringValue = ""}
  188. self.datas["achievement2"] = {Key = "achievement2", Value = 480, StringValue = ""}
  189. self.datas["DoubleEleven1"] = {Key = "DoubleEleven1", Value = 289, StringValue = ""}
  190. self.datas["DoubleEleven2"] = {Key = "DoubleEleven2", Value = 1, StringValue = ""}
  191. self.datas["DoubleEleven3"] = {Key = "DoubleEleven3", Value = 5, StringValue = ""}
  192. self.datas["DoubleEleven4"] = {Key = "DoubleEleven4", Value = 200, StringValue = ""}
  193. self.datas["WingsAwakening"] = {Key = "WingsAwakening", Value = 704, StringValue = ""}
  194. self.datas["DragonBallLotteryPriceTimes"] = {Key = "DragonBallLotteryPriceTimes", Value = 200, StringValue = ""}
  195. self.datas["DragonBallLotteryCount"] = {Key = "DragonBallLotteryCount", Value = 10, StringValue = ""}
  196. self.datas["DragonBallLotteryItem"] = {Key = "DragonBallLotteryItem", Value = 337, StringValue = ""}
  197. end
  198. M_BaseInfoCFG:init()