多层h5提交
This commit is contained in:
@@ -51,7 +51,7 @@ namespace BingoBrain
|
|||||||
public int Active_Limit_times;
|
public int Active_Limit_times;
|
||||||
public int PayIncrease;
|
public int PayIncrease;
|
||||||
public float ADIncrease;
|
public float ADIncrease;
|
||||||
public int Reset_time;
|
public int Reset_time;
|
||||||
|
|
||||||
}
|
}
|
||||||
public class CardRedeemNewModel : BingoBrainConfigModel<cardRedeemNew>
|
public class CardRedeemNewModel : BingoBrainConfigModel<cardRedeemNew>
|
||||||
@@ -93,6 +93,10 @@ namespace BingoBrain
|
|||||||
public int wvType;
|
public int wvType;
|
||||||
public int wvthrough;
|
public int wvthrough;
|
||||||
public int isMagic;
|
public int isMagic;
|
||||||
|
public int[] darkWVRefreshtime;
|
||||||
|
public int darkWVDailyrefreshtimes;
|
||||||
|
public int WVClickAddTime;
|
||||||
|
public int WVOffset;
|
||||||
}
|
}
|
||||||
public class exBrPoolModel : BingoBrainConfigModel<exBrPool>
|
public class exBrPoolModel : BingoBrainConfigModel<exBrPool>
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -170,7 +170,7 @@ namespace BingoBrain
|
|||||||
// public int this_time_cardtype;
|
// public int this_time_cardtype;
|
||||||
public int look_ad_numbers;
|
public int look_ad_numbers;
|
||||||
// public int look_ad_time;
|
// public int look_ad_time;
|
||||||
public int[] dark_Dayref;
|
public List<int> dark_Dayref;
|
||||||
// public int[] _goldtime;
|
// public int[] _goldtime;
|
||||||
// public MaxPayClass max_pay_object;
|
// public MaxPayClass max_pay_object;
|
||||||
|
|
||||||
|
|||||||
@@ -97,7 +97,7 @@ namespace DontConfuse
|
|||||||
}
|
}
|
||||||
public void SetDarkThough(bool though)
|
public void SetDarkThough(bool though)
|
||||||
{
|
{
|
||||||
if(!GameHelper.IsGiftSwitch()) return;
|
if (!GameHelper.IsGiftSwitch()) return;
|
||||||
// if (though)
|
// if (though)
|
||||||
// {
|
// {
|
||||||
// if (UI.Instance.IsExistUI(UIConst.LevelSuccessUI) || UI.Instance.IsExistUI(UIConst.MakeupConfirmUI) ||
|
// if (UI.Instance.IsExistUI(UIConst.LevelSuccessUI) || UI.Instance.IsExistUI(UIConst.MakeupConfirmUI) ||
|
||||||
@@ -207,7 +207,6 @@ namespace DontConfuse
|
|||||||
var newDays = newDate.Day;
|
var newDays = newDate.Day;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
if (times == "Dailyrefreshtimes")
|
if (times == "Dailyrefreshtimes")
|
||||||
{
|
{
|
||||||
var last_time = PlayerPrefs.GetInt("Dayreftimes", 0);
|
var last_time = PlayerPrefs.GetInt("Dayreftimes", 0);
|
||||||
@@ -226,21 +225,49 @@ namespace DontConfuse
|
|||||||
string darkWVRefreshtime_str = "";
|
string darkWVRefreshtime_str = "";
|
||||||
string darkWVDailyrefreshtimes_str = "";
|
string darkWVDailyrefreshtimes_str = "";
|
||||||
|
|
||||||
for (int i = 0; i < ConfigSystem.GetConfig<CommonModel>().darkWVRefreshtime.Length; i++)
|
// for (int i = 0; i < ConfigSystem.GetConfig<CommonModel>().darkWVRefreshtime.Length; i++)
|
||||||
|
// {
|
||||||
|
// if (i != 0) darkWVRefreshtime_str += "|";
|
||||||
|
// darkWVRefreshtime_str += ConfigSystem.GetConfig<CommonModel>().darkWVRefreshtime[i].ToString();
|
||||||
|
// }
|
||||||
|
// for (int i = 0; i < ConfigSystem.GetConfig<CommonModel>().darkWVRefreshtime2.Length; i++)
|
||||||
|
// {
|
||||||
|
// darkWVRefreshtime_str += "|";
|
||||||
|
// darkWVRefreshtime_str += ConfigSystem.GetConfig<CommonModel>().darkWVRefreshtime2[i].ToString();
|
||||||
|
// }
|
||||||
|
|
||||||
|
int dark_type = -1;
|
||||||
|
for (int i = 0; i < ConfigSystem.dark_weblist.Count; i++)
|
||||||
{
|
{
|
||||||
if (i != 0) darkWVRefreshtime_str += "|";
|
if (dark_type != ConfigSystem.dark_weblist[i].wvType)
|
||||||
darkWVRefreshtime_str += ConfigSystem.GetConfig<CommonModel>().darkWVRefreshtime[i].ToString();
|
{
|
||||||
|
if (i != 0) darkWVRefreshtime_str += "|";
|
||||||
|
darkWVRefreshtime_str += ConfigSystem.dark_weblist[i].darkWVRefreshtime[0];
|
||||||
|
darkWVRefreshtime_str += "|";
|
||||||
|
darkWVRefreshtime_str += ConfigSystem.dark_weblist[i].darkWVRefreshtime[1];
|
||||||
|
dark_type = ConfigSystem.dark_weblist[i].wvType;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
for (int i = 0; i < ConfigSystem.GetConfig<CommonModel>().darkWVRefreshtime2.Length; i++)
|
|
||||||
|
|
||||||
|
// for (int i = 0; i < ConfigSystem.GetConfig<CommonModel>().darkWVDailyrefreshtimes.Length; i++)
|
||||||
|
// {
|
||||||
|
// if (i != 0) darkWVDailyrefreshtimes_str += "|";
|
||||||
|
// darkWVDailyrefreshtimes_str += ConfigSystem.GetConfig<CommonModel>().darkWVDailyrefreshtimes[i].ToString();
|
||||||
|
// }
|
||||||
|
|
||||||
|
dark_type = -1;
|
||||||
|
for (int i = 0; i < ConfigSystem.dark_weblist.Count; i++)
|
||||||
{
|
{
|
||||||
darkWVRefreshtime_str += "|";
|
if (dark_type != ConfigSystem.dark_weblist[i].wvType)
|
||||||
darkWVRefreshtime_str += ConfigSystem.GetConfig<CommonModel>().darkWVRefreshtime2[i].ToString();
|
{
|
||||||
}
|
if (i != 0) darkWVDailyrefreshtimes_str += "|";
|
||||||
for (int i = 0; i < ConfigSystem.GetConfig<CommonModel>().darkWVDailyrefreshtimes.Length; i++)
|
darkWVDailyrefreshtimes_str += ConfigSystem.dark_weblist[i].darkWVDailyrefreshtimes;
|
||||||
{
|
dark_type = ConfigSystem.dark_weblist[i].wvType;
|
||||||
if (i != 0) darkWVDailyrefreshtimes_str += "|";
|
}
|
||||||
darkWVDailyrefreshtimes_str += ConfigSystem.GetConfig<CommonModel>().darkWVDailyrefreshtimes[i].ToString();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
WebviewManager.Instance.addH5Field(ConfigSystem.GetConfig<CommonModel>().flyCtRate, ConfigSystem.GetConfig<CommonModel>().otherH5switch,
|
WebviewManager.Instance.addH5Field(ConfigSystem.GetConfig<CommonModel>().flyCtRate, ConfigSystem.GetConfig<CommonModel>().otherH5switch,
|
||||||
ConfigSystem.GetConfig<CommonModel>().H5Refreshtime, ConfigSystem.GetConfig<CommonModel>().Dailyrefreshtimes, ConfigSystem.GetConfig<CommonModel>().darkThoughProbability, darkWVRefreshtime_str,
|
ConfigSystem.GetConfig<CommonModel>().H5Refreshtime, ConfigSystem.GetConfig<CommonModel>().Dailyrefreshtimes, ConfigSystem.GetConfig<CommonModel>().darkThoughProbability, darkWVRefreshtime_str,
|
||||||
darkWVDailyrefreshtimes_str, "", "", GameHelper.IsGiftSwitch(), "", "");
|
darkWVDailyrefreshtimes_str, "", "", GameHelper.IsGiftSwitch(), "", "");
|
||||||
@@ -275,20 +302,43 @@ namespace DontConfuse
|
|||||||
string darkWVRefreshtime_str = "";
|
string darkWVRefreshtime_str = "";
|
||||||
string darkWVDailyrefreshtimes_str = "";
|
string darkWVDailyrefreshtimes_str = "";
|
||||||
|
|
||||||
for (int i = 0; i < ConfigSystem.GetConfig<CommonModel>().darkWVRefreshtime.Length; i++)
|
// for (int i = 0; i < ConfigSystem.GetConfig<CommonModel>().darkWVRefreshtime.Length; i++)
|
||||||
|
// {
|
||||||
|
// if (i != 0) darkWVRefreshtime_str += "|";
|
||||||
|
// darkWVRefreshtime_str += ConfigSystem.GetConfig<CommonModel>().darkWVRefreshtime[i].ToString();
|
||||||
|
// }
|
||||||
|
// for (int i = 0; i < ConfigSystem.GetConfig<CommonModel>().darkWVRefreshtime2.Length; i++)
|
||||||
|
// {
|
||||||
|
// darkWVRefreshtime_str += "|";
|
||||||
|
// darkWVRefreshtime_str += ConfigSystem.GetConfig<CommonModel>().darkWVRefreshtime2[i].ToString();
|
||||||
|
// }
|
||||||
|
int dark_type = -1;
|
||||||
|
for (int i = 0; i < ConfigSystem.dark_weblist.Count; i++)
|
||||||
{
|
{
|
||||||
if (i != 0) darkWVRefreshtime_str += "|";
|
if (dark_type != ConfigSystem.dark_weblist[i].wvType)
|
||||||
darkWVRefreshtime_str += ConfigSystem.GetConfig<CommonModel>().darkWVRefreshtime[i].ToString();
|
{
|
||||||
|
if (i != 0) darkWVRefreshtime_str += "|";
|
||||||
|
darkWVRefreshtime_str += ConfigSystem.dark_weblist[i].darkWVRefreshtime[0];
|
||||||
|
darkWVRefreshtime_str += "|";
|
||||||
|
darkWVRefreshtime_str += ConfigSystem.dark_weblist[i].darkWVRefreshtime[1];
|
||||||
|
dark_type = ConfigSystem.dark_weblist[i].wvType;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
for (int i = 0; i < ConfigSystem.GetConfig<CommonModel>().darkWVRefreshtime2.Length; i++)
|
// for (int i = 0; i < ConfigSystem.GetConfig<CommonModel>().darkWVDailyrefreshtimes.Length; i++)
|
||||||
|
// {
|
||||||
|
// if (i != 0) darkWVDailyrefreshtimes_str += "|";
|
||||||
|
// darkWVDailyrefreshtimes_str += ConfigSystem.GetConfig<CommonModel>().darkWVDailyrefreshtimes[i].ToString();
|
||||||
|
// }
|
||||||
|
|
||||||
|
dark_type = -1;
|
||||||
|
for (int i = 0; i < ConfigSystem.dark_weblist.Count; i++)
|
||||||
{
|
{
|
||||||
darkWVRefreshtime_str += "|";
|
if (dark_type != ConfigSystem.dark_weblist[i].wvType)
|
||||||
darkWVRefreshtime_str += ConfigSystem.GetConfig<CommonModel>().darkWVRefreshtime2[i].ToString();
|
{
|
||||||
}
|
if (i != 0) darkWVDailyrefreshtimes_str += "|";
|
||||||
for (int i = 0; i < ConfigSystem.GetConfig<CommonModel>().darkWVDailyrefreshtimes.Length; i++)
|
darkWVDailyrefreshtimes_str += ConfigSystem.dark_weblist[i].darkWVDailyrefreshtimes;
|
||||||
{
|
dark_type = ConfigSystem.dark_weblist[i].wvType;
|
||||||
if (i != 0) darkWVDailyrefreshtimes_str += "|";
|
}
|
||||||
darkWVDailyrefreshtimes_str += ConfigSystem.GetConfig<CommonModel>().darkWVDailyrefreshtimes[i].ToString();
|
|
||||||
}
|
}
|
||||||
WebviewManager.Instance.addH5Field(ConfigSystem.GetConfig<CommonModel>().flyCtRate, ConfigSystem.GetConfig<CommonModel>().otherH5switch,
|
WebviewManager.Instance.addH5Field(ConfigSystem.GetConfig<CommonModel>().flyCtRate, ConfigSystem.GetConfig<CommonModel>().otherH5switch,
|
||||||
ConfigSystem.GetConfig<CommonModel>().H5Refreshtime, ConfigSystem.GetConfig<CommonModel>().Dailyrefreshtimes, ConfigSystem.GetConfig<CommonModel>().darkThoughProbability, darkWVRefreshtime_str,
|
ConfigSystem.GetConfig<CommonModel>().H5Refreshtime, ConfigSystem.GetConfig<CommonModel>().Dailyrefreshtimes, ConfigSystem.GetConfig<CommonModel>().darkThoughProbability, darkWVRefreshtime_str,
|
||||||
@@ -588,39 +638,59 @@ namespace DontConfuse
|
|||||||
|
|
||||||
if (SaveData.GetSaveobject().dark_Dayref == null)
|
if (SaveData.GetSaveobject().dark_Dayref == null)
|
||||||
{
|
{
|
||||||
SaveData.GetSaveobject().dark_Dayref = new int[2];
|
SaveData.GetSaveobject().dark_Dayref = new List<int>() { 0, 0, 0, 0, 0, 0, 0, 0, 0 ,0,0};
|
||||||
}
|
}
|
||||||
|
|
||||||
if (dark_last_time == dark_newDays)
|
if (dark_last_time == dark_newDays)
|
||||||
{
|
{
|
||||||
// dark_Dailyrefresh_reamain = ConfigSystem.GetConfig<CommonModel>().darkWVDailyrefreshtimes[Int32.Parse(webview_index) - 1] -
|
// dark_Dailyrefresh_reamain = ConfigSystem.GetConfig<CommonModel>().darkWVDailyrefreshtimes[Int32.Parse(webview_index) - 1] -
|
||||||
// PlayerPrefs.GetInt("dark_Dayref", 0);
|
// PlayerPrefs.GetInt("dark_Dayref", 0);
|
||||||
for (int i = 0; i < ConfigSystem.GetConfig<CommonModel>().darkWVDailyrefreshtimes.Length; i++)
|
// for (int i = 0; i < ConfigSystem.GetConfig<CommonModel>().darkWVDailyrefreshtimes.Length; i++)
|
||||||
|
// {
|
||||||
|
|
||||||
|
// if (i != 0) darkWVDailyrefreshtimes_str += "|";
|
||||||
|
// darkWVDailyrefreshtimes_str += ConfigSystem.GetConfig<CommonModel>().darkWVDailyrefreshtimes[i] - SaveData.GetSaveobject().dark_Dayref[i];
|
||||||
|
|
||||||
|
// }
|
||||||
|
int dark_type_ = -1;
|
||||||
|
for (int i = 0; i < ConfigSystem.dark_weblist.Count; i++)
|
||||||
{
|
{
|
||||||
|
if (dark_type_ != ConfigSystem.dark_weblist[i].wvType)
|
||||||
if (i != 0) darkWVDailyrefreshtimes_str += "|";
|
{
|
||||||
darkWVDailyrefreshtimes_str += ConfigSystem.GetConfig<CommonModel>().darkWVDailyrefreshtimes[i] - SaveData.GetSaveobject().dark_Dayref[i];
|
dark_type_ = ConfigSystem.dark_weblist[i].wvType;
|
||||||
|
if (i != 0) darkWVDailyrefreshtimes_str += "|";
|
||||||
|
Debug.Log(dark_type_);
|
||||||
|
darkWVDailyrefreshtimes_str += ConfigSystem.dark_weblist[i].darkWVDailyrefreshtimes - SaveData.GetSaveobject().dark_Dayref[dark_type_ - 1];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
// PlayerPrefs.SetInt("dark_Dayref", 0);
|
// PlayerPrefs.SetInt("dark_Dayref", 0);
|
||||||
for (int i = 0; i < SaveData.GetSaveobject().dark_Dayref.Length; i++)
|
for (int i = 0; i < SaveData.GetSaveobject().dark_Dayref.Count; i++)
|
||||||
{
|
{
|
||||||
SaveData.GetSaveobject().dark_Dayref[i] = 0;
|
SaveData.GetSaveobject().dark_Dayref[i] = 0;
|
||||||
}
|
}
|
||||||
SaveData.saveDataFunc();
|
SaveData.saveDataFunc();
|
||||||
// dark_Dailyrefresh_reamain = ConfigSystem.GetConfig<CommonModel>().darkWVDailyrefreshtimes[Int32.Parse(webview_index)];
|
// dark_Dailyrefresh_reamain = ConfigSystem.GetConfig<CommonModel>().darkWVDailyrefreshtimes[Int32.Parse(webview_index)];
|
||||||
|
|
||||||
for (int i = 0; i < ConfigSystem.GetConfig<CommonModel>().darkWVDailyrefreshtimes.Length; i++)
|
// for (int i = 0; i < ConfigSystem.GetConfig<CommonModel>().darkWVDailyrefreshtimes.Length; i++)
|
||||||
|
// {
|
||||||
|
|
||||||
|
// if (i != 0) darkWVDailyrefreshtimes_str += "|";
|
||||||
|
// darkWVDailyrefreshtimes_str += ConfigSystem.GetConfig<CommonModel>().darkWVDailyrefreshtimes[i];
|
||||||
|
|
||||||
|
// }
|
||||||
|
int dark_type_ = -1;
|
||||||
|
for (int i = 0; i < ConfigSystem.dark_weblist.Count; i++)
|
||||||
{
|
{
|
||||||
|
if (dark_type_ != ConfigSystem.dark_weblist[i].wvType)
|
||||||
if (i != 0) darkWVDailyrefreshtimes_str += "|";
|
{
|
||||||
darkWVDailyrefreshtimes_str += ConfigSystem.GetConfig<CommonModel>().darkWVDailyrefreshtimes[i];
|
dark_type_ = ConfigSystem.dark_weblist[i].wvType;
|
||||||
|
if (i != 0) darkWVDailyrefreshtimes_str += "|";
|
||||||
|
darkWVDailyrefreshtimes_str += ConfigSystem.dark_weblist[i].darkWVDailyrefreshtimes;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
PlayerPrefs.SetInt("dark_refreshDay", dark_newDays);
|
PlayerPrefs.SetInt("dark_refreshDay", dark_newDays);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -672,29 +742,50 @@ namespace DontConfuse
|
|||||||
dark_str += "|";
|
dark_str += "|";
|
||||||
}
|
}
|
||||||
|
|
||||||
dark_str += ConfigSystem.dark_weblist[i].webLink + "#" + ConfigSystem.dark_weblist[i].probability + "#" + can_refresh_numbners + "#" + ConfigSystem.dark_weblist[i].darkWebTimesCT + "#" + ConfigSystem.dark_weblist[i].wvType + "#" + ConfigSystem.dark_weblist[i].darkWebTimesCT2;
|
dark_str += ConfigSystem.dark_weblist[i].webLink + "#" + ConfigSystem.dark_weblist[i].probability + "#" + can_refresh_numbners + "#" + ConfigSystem.dark_weblist[i].darkWebTimesCT + "#" + ConfigSystem.dark_weblist[i].wvType + "#" + ConfigSystem.dark_weblist[i].WVOffset ;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
string darkWVRefreshtime_str = "";
|
string darkWVRefreshtime_str = "";
|
||||||
|
|
||||||
|
|
||||||
for (int i = 0; i < ConfigSystem.GetConfig<CommonModel>().darkWVRefreshtime.Length; i++)
|
// for (int i = 0; i < ConfigSystem.GetConfig<CommonModel>().darkWVRefreshtime.Length; i++)
|
||||||
|
// {
|
||||||
|
// if (i != 0) darkWVRefreshtime_str += "|";
|
||||||
|
// darkWVRefreshtime_str += ConfigSystem.GetConfig<CommonModel>().darkWVRefreshtime[i].ToString();
|
||||||
|
// }
|
||||||
|
// for (int i = 0; i < ConfigSystem.GetConfig<CommonModel>().darkWVRefreshtime2.Length; i++)
|
||||||
|
// {
|
||||||
|
// darkWVRefreshtime_str += "|";
|
||||||
|
// darkWVRefreshtime_str += ConfigSystem.GetConfig<CommonModel>().darkWVRefreshtime2[i].ToString();
|
||||||
|
// }
|
||||||
|
int dark_type = -1;
|
||||||
|
string add_time = "";
|
||||||
|
for (int i = 0; i < ConfigSystem.dark_weblist.Count; i++)
|
||||||
{
|
{
|
||||||
if (i != 0) darkWVRefreshtime_str += "|";
|
if (dark_type != ConfigSystem.dark_weblist[i].wvType)
|
||||||
darkWVRefreshtime_str += ConfigSystem.GetConfig<CommonModel>().darkWVRefreshtime[i].ToString();
|
{
|
||||||
|
if (i != 0)
|
||||||
|
{
|
||||||
|
darkWVRefreshtime_str += "|";
|
||||||
|
add_time += "|";
|
||||||
|
}
|
||||||
|
darkWVRefreshtime_str += ConfigSystem.dark_weblist[i].darkWVRefreshtime[0];
|
||||||
|
darkWVRefreshtime_str += "|";
|
||||||
|
darkWVRefreshtime_str += ConfigSystem.dark_weblist[i].darkWVRefreshtime[1];
|
||||||
|
dark_type = ConfigSystem.dark_weblist[i].wvType;
|
||||||
|
add_time += ConfigSystem.dark_weblist[i].WVClickAddTime;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
for (int i = 0; i < ConfigSystem.GetConfig<CommonModel>().darkWVRefreshtime2.Length; i++)
|
|
||||||
{
|
|
||||||
darkWVRefreshtime_str += "|";
|
|
||||||
darkWVRefreshtime_str += ConfigSystem.GetConfig<CommonModel>().darkWVRefreshtime2[i].ToString();
|
|
||||||
}
|
|
||||||
|
|
||||||
Debug.Log("--------------------------------");
|
Debug.Log("--------------------------------");
|
||||||
|
|
||||||
string add_time = ConfigSystem.GetConfig<CommonModel>().WVClickAddTime[0] + "|" + ConfigSystem.GetConfig<CommonModel>().WVClickAddTime[1];
|
// add_time+= ConfigSystem.GetConfig<CommonModel>().WVClickAddTime[0] + "|" + ConfigSystem.GetConfig<CommonModel>().WVClickAddTime[1];
|
||||||
|
|
||||||
Debug.Log(add_time);
|
Debug.Log(add_time);
|
||||||
|
Debug.Log(darkWVRefreshtime_str);
|
||||||
|
Debug.Log(darkWVDailyrefreshtimes_str);
|
||||||
|
Debug.Log(dark_str);
|
||||||
|
Debug.Log(ConfigSystem.web_through_str);
|
||||||
WebviewManager.Instance.addH5Field(ConfigSystem.GetConfig<CommonModel>().flyCtRate, ConfigSystem.GetConfig<CommonModel>().otherH5switch,
|
WebviewManager.Instance.addH5Field(ConfigSystem.GetConfig<CommonModel>().flyCtRate, ConfigSystem.GetConfig<CommonModel>().otherH5switch,
|
||||||
ConfigSystem.GetConfig<CommonModel>().H5Refreshtime, Dailyrefresh_reamain, ConfigSystem.GetConfig<CommonModel>().darkThoughProbability
|
ConfigSystem.GetConfig<CommonModel>().H5Refreshtime, Dailyrefresh_reamain, ConfigSystem.GetConfig<CommonModel>().darkThoughProbability
|
||||||
, darkWVRefreshtime_str, darkWVDailyrefreshtimes_str, dark_str, light_str, GameHelper.IsGiftSwitch(), ConfigSystem.web_through_str, add_time);
|
, darkWVRefreshtime_str, darkWVDailyrefreshtimes_str, dark_str, light_str, GameHelper.IsGiftSwitch(), ConfigSystem.web_through_str, add_time);
|
||||||
|
|||||||
+689
-462
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user