| | |
| | | } |
| | | int curValue = 0; |
| | | MainLevelManager.Instance.m_DailyBootyDict.TryGetValue(itemID, out curValue); |
| | | dropValueText.text = UIHelper.AppendColor(curValue >= maxValue ? TextColType.Red : TextColType.Green, |
| | | UIHelper.ReplaceLargeNum(curValue) + "/" + UIHelper.ReplaceLargeNum(maxValue)); |
| | | if (maxValue > 1000000000) |
| | | { |
| | | dropValueText.text = UIHelper.AppendColor(TextColType.Green, UIHelper.ReplaceLargeNum(curValue) + "/" + Language.Get("L1138")); |
| | | } |
| | | else |
| | | { |
| | | dropValueText.text = UIHelper.AppendColor(curValue >= maxValue ? TextColType.Red : TextColType.Green, |
| | | UIHelper.ReplaceLargeNum(curValue) + "/" + UIHelper.ReplaceLargeNum(maxValue)); |
| | | } |
| | | |
| | | } |
| | | } |