超级玩家
 
- 贡献度
- 8
- 金元
- 9647
- 积分
- 997
- 精华
- 0
- 注册时间
- 2006-10-31
|
不需要这么改,这样的话刷礼物反复存档读档效率极低.
找一个支持json格式的文本编辑器(支持语法高亮,容易定位项目)
在_index2BuyItemCount这个位置往上找所有$type值为US.DataStructure.ItemGift, Shared的节点,数目等于本章节商人出售的礼物数量,将"_count":1改为其他数字(20-30)即可,太多了打开物品栏会很卡,这样你改了钱,买一次就能得到20-30个礼物
以第十章Shop_EP_ET_010_Special为例,从item19开始改成这样:
"19": {
"$id": "4238",
"Id": 19,
"Item": {
"$id": "4239",
"$type": "US.DataStructure.ItemGift, Shared",
"_id": 19,
"_count": 30,
"_pdItemId": {
"GUID": "71eb94ea7a5deb244925b4afe9d597bc"
},
"_isNew": false
},
"ReadPDDialogueInteraction": [],
"NotReadPDDialogueInteraction": []
},
"20": {
"$id": "4240",
"Id": 20,
"Item": {
"$id": "4241",
"$type": "US.DataStructure.ItemGift, Shared",
"_id": 20,
"_count": 30,
"_pdItemId": {
"GUID": "bea580975045e5540bc3be94867b0884"
},
"_isNew": false
},
"ReadPDDialogueInteraction": [],
"NotReadPDDialogueInteraction": []
},
"21": {
"$id": "4242",
"Id": 21,
"Item": {
"$id": "4243",
"$type": "US.DataStructure.ItemGift, Shared",
"_id": 21,
"_count": 30,
"_pdItemId": {
"GUID": "1e808337cce05c94f9d44901200239cc"
},
"_isNew": false
},
"ReadPDDialogueInteraction": [],
"NotReadPDDialogueInteraction": []
},
"22": {
"$id": "4244",
"Id": 22,
"Item": {
"$id": "4245",
"$type": "US.DataStructure.ItemGift, Shared",
"_id": 22,
"_count": 30,
"_pdItemId": {
"GUID": "92c68f771254c954e8827b176f1ff230"
},
"_isNew": false
},
"ReadPDDialogueInteraction": [],
"NotReadPDDialogueInteraction": []
},
"23": {
"$id": "4246",
"Id": 23,
"Item": {
"$id": "4247",
"$type": "US.DataStructure.ItemGift, Shared",
"_id": 23,
"_count": 30,
"_pdItemId": {
"GUID": "3d7c499035d8b8140bcdff89bd82df1c"
},
"_isNew": false
},
"ReadPDDialogueInteraction": [],
"NotReadPDDialogueInteraction": []
}
},
"_index2BuyItemCount": {
"$id": "4248",
"2": 1,
"1": 1,
"3": 1,
"22": 30,
"23": 30
}
|
|