Overview
Comment: | 0.0.368 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
58e3b94eee334e7741a4ab1a0b34f195 |
User & Date: | 顽雨沉风 on 2023-06-29 14:02:41 |
Other Links: | manifest | tags |
Context
2023-06-29
| ||
14:02 | 0.0.369 check-in: 2ac4f59108 user: 顽雨沉风 tags: trunk | |
14:02 | 0.0.368 check-in: 58e3b94eee user: 顽雨沉风 tags: trunk | |
14:01 | 0.0.367 check-in: 494b0d4598 user: 顽雨沉风 tags: trunk | |
Changes
Modified script/c0.lua from [85c6e4bd99] to [64bea65131].
︙ | ︙ | |||
37 38 39 40 41 42 43 44 | str["我方怪兽区"] = Duel.GetFieldGroupCount(0,LOCATION_MZONE,0) str["我方手卡"] = Duel.GetFieldGroupCount(0,LOCATION_HAND,0) str["我方灵摆区"] = Duel.GetFieldGroupCount(0,LOCATION_PZONE,0) str["我方除外区"] = Duel.GetFieldGroupCount(0,LOCATION_REMOVED,0) str["我方额外卡组"] = Duel.GetFieldGroupCount(0,LOCATION_EXTRA,0) str["我方魔陷区"] = Duel.GetFieldGroupCount(0,LOCATION_SZONE,0) str["这个残局的效果卡数量"] = str["这个残局的效果卡数量"] + str["我方墓地"] | > | | > | 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | str["我方怪兽区"] = Duel.GetFieldGroupCount(0,LOCATION_MZONE,0) str["我方手卡"] = Duel.GetFieldGroupCount(0,LOCATION_HAND,0) str["我方灵摆区"] = Duel.GetFieldGroupCount(0,LOCATION_PZONE,0) str["我方除外区"] = Duel.GetFieldGroupCount(0,LOCATION_REMOVED,0) str["我方额外卡组"] = Duel.GetFieldGroupCount(0,LOCATION_EXTRA,0) str["我方魔陷区"] = Duel.GetFieldGroupCount(0,LOCATION_SZONE,0) str["这个残局的效果卡数量"] = str["这个残局的效果卡数量"] + str["我方卡组"] str["这个残局的效果卡数量"] = str["这个残局的效果卡数量"] + str["我方墓地"] str["这个残局的效果卡数量"] = str["这个残局的效果卡数量"] + str["我方怪兽区"] str["这个残局的效果卡数量"] = str["这个残局的效果卡数量"] + str["我方手卡"] str["这个残局的效果卡数量"] = str["这个残局的效果卡数量"] + str["我方灵摆区"] str["这个残局的效果卡数量"] = str["这个残局的效果卡数量"] + str["我方魔陷区"] str["这个残局的效果卡数量"] = str["这个残局的效果卡数量"] + str["我方除外区"] str["这个残局的效果卡数量"] = str["这个残局的效果卡数量"] + str["我方额外卡组"] --~ Debug.ShowHint(str["这个残局的效果卡数量"]) end |