资深玩家
  
- 贡献度
- 2023
- 金元
- 26032
- 积分
- 10705
- 精华
- 1
- 注册时间
- 2021-1-12
|
贷款的额度:
mainscript:
GetKreditlimit():最后一句return改成下面:
return num + 30000000L; +上你要贷的额度
下面可选:
init():这是改每项贷款数额显示,直接改
this.uiObjects[3].GetComponent<Text>().text = this.mS_.GetMoney(250000L, true);
this.uiObjects[4].GetComponent<Text>().text = this.mS_.GetMoney(250000L, true);
this.uiObjects[5].GetComponent<Text>().text = this.mS_.GetMoney(500000L, true);
this.uiObjects[6].GetComponent<Text>().text = this.mS_.GetMoney(500000L, true);
this.uiObjects[7].GetComponent<Text>().text = this.mS_.GetMoney(1000000L, true);
this.uiObjects[8].GetComponent<Text>().text = this.mS_.GetMoney(1000000L, true);
this.uiObjects[9].GetComponent<Text>().text = this.mS_.GetMoney(2500000L, true);
this.uiObjects[10].GetComponent<Text>().text = this.mS_.GetMoney(2500000L, true);
下面是每个选项实际贷款数额
BUTTON_KreditAbzahlen(int i):
i*=10;
BUTTON_KreditAufnehmen(int i):
i*=10;
这个参数i好像是固定的,25000,50000。。。不知道哪改,所以改代码
上面改的显示最好和下面对应,比如第一个改成10倍250000,下面两个就*=10(原来是25000)
|
评分
-
1
查看全部评分
-
|