├── .gitignore ├── changelog.md ├── docs ├── images │ ├── 01-js-settings.png │ ├── 02-key-macro.png │ ├── heping-settings.jpg │ └── tcg-settings.png ├── 官方资料 │ ├── TCG单段,时间间隔压枪配置(推荐设置比较简单).zip │ ├── TCG多段,指定像素压枪配置(不推荐调像素较麻烦).zip │ └── TCG多段,时间间隔压枪配置(推荐设置较简单).zip └── 键位配置 │ └── 2880x1800 │ └── TG_Keys_XiaoMiPad6Max14_2023-12-31.properties ├── gulpfile.js ├── package.json ├── qodana.yaml ├── readme.md ├── src ├── images │ ├── 1600 │ │ ├── bag │ │ │ ├── 拾取列表关闭按钮.png │ │ │ └── 背包已打开的标志.png │ │ ├── car │ │ │ └── 下车按钮.png │ │ ├── guns │ │ │ ├── delicate │ │ │ │ ├── 大图ACVAL.png │ │ │ │ ├── 大图AKM.png │ │ │ │ ├── 大图AUG.png │ │ │ │ ├── 大图DP28.png │ │ │ │ ├── 大图GROZA.png │ │ │ │ ├── 大图M249.png │ │ │ │ ├── 大图M4.png │ │ │ │ ├── 大图M417.png │ │ │ │ ├── 大图M762.png │ │ │ │ ├── 大图MG3.png │ │ │ │ ├── 大图MIGUAN.png │ │ │ │ ├── 大图MK20H.png │ │ │ │ ├── 大图P90.png │ │ │ │ ├── 大图PKM.png │ │ │ │ ├── 大图SCARL.png │ │ │ │ ├── 大图TANGMUXUN.png │ │ │ │ ├── 大图UMP45.png │ │ │ │ ├── 大图UZI.png │ │ │ │ ├── 大图VECTOR.png │ │ │ │ ├── 大图VSS.png │ │ │ │ └── 大图YENIU.png │ │ │ └── flat │ │ │ │ ├── ACVAL.png │ │ │ │ ├── AK.png │ │ │ │ ├── AKM.png │ │ │ │ ├── AUG.png │ │ │ │ ├── DP28.png │ │ │ │ ├── GOZA.png │ │ │ │ ├── GROZA.png │ │ │ │ ├── M249.png │ │ │ │ ├── M4.png │ │ │ │ ├── M417.png │ │ │ │ ├── M762.png │ │ │ │ ├── MG3.png │ │ │ │ ├── MIGUAN.png │ │ │ │ ├── MK20H.png │ │ │ │ ├── P90.png │ │ │ │ ├── PKM.png │ │ │ │ ├── SCARL.png │ │ │ │ ├── TANGMUXUN.png │ │ │ │ ├── UMP45.png │ │ │ │ ├── UZI.png │ │ │ │ ├── VECTOR.png │ │ │ │ ├── VSS.png │ │ │ │ └── YENIU.png │ │ ├── medicine │ │ │ ├── 急救包.png │ │ │ ├── 止痛药.png │ │ │ ├── 绷带.png │ │ │ ├── 肾上腺素注射剂.png │ │ │ └── 能量饮料.png │ │ ├── mirrors │ │ │ ├── 6倍镜调距按钮.png │ │ │ ├── delicate │ │ │ │ ├── 大图2倍镜.png │ │ │ │ ├── 大图3倍镜.png │ │ │ │ ├── 大图4倍镜.png │ │ │ │ ├── 大图6倍镜.png │ │ │ │ ├── 大图8倍镜.png │ │ │ │ ├── 大图全息.png │ │ │ │ └── 大图红点.png │ │ │ ├── text │ │ │ │ ├── 2倍镜文本.png │ │ │ │ ├── 3倍镜文本.png │ │ │ │ ├── 4倍镜文本.png │ │ │ │ ├── 6倍镜文本.png │ │ │ │ ├── 8倍镜文本.png │ │ │ │ ├── 全息文本.png │ │ │ │ ├── 机瞄文本.png │ │ │ │ └── 红点文本.png │ │ │ └── 第一人称文本.png │ │ └── missile │ │ │ ├── 取消投掷按钮.png │ │ │ ├── 投掷物展开按钮.png │ │ │ ├── 投掷物折叠按钮.png │ │ │ ├── 烟雾弹.png │ │ │ ├── 燃烧瓶.png │ │ │ └── 碎片手榴弹.png │ └── 1800 │ │ ├── bag │ │ ├── 拾取列表关闭按钮.png │ │ ├── 拾取列表关闭按钮备用2.png │ │ └── 背包已打开的标志.png │ │ ├── car │ │ └── 下车按钮.png │ │ ├── guns │ │ ├── delicate │ │ │ ├── 大图ACVAL.png │ │ │ ├── 大图AKM.png │ │ │ ├── 大图AUG.png │ │ │ ├── 大图DP28.png │ │ │ ├── 大图GROZA.png │ │ │ ├── 大图M249.png │ │ │ ├── 大图M4.png │ │ │ ├── 大图M417.png │ │ │ ├── 大图M762.png │ │ │ ├── 大图MG3.png │ │ │ ├── 大图MIGUAN.png │ │ │ ├── 大图MK20H.png │ │ │ ├── 大图P90.png │ │ │ ├── 大图PKM.png │ │ │ ├── 大图SCARL.png │ │ │ ├── 大图TANGMUXUN.png │ │ │ ├── 大图UMP45.png │ │ │ ├── 大图UZI.png │ │ │ ├── 大图VECTOR.png │ │ │ ├── 大图VSS.png │ │ │ └── 大图YENIU.png │ │ └── flat │ │ │ ├── ACVAL.png │ │ │ ├── AK.png │ │ │ ├── AKM.png │ │ │ ├── AUG.png │ │ │ ├── DP28.png │ │ │ ├── GOZA.png │ │ │ ├── GROZA.png │ │ │ ├── M249.png │ │ │ ├── M4.png │ │ │ ├── M417.png │ │ │ ├── M762.png │ │ │ ├── MG3.png │ │ │ ├── MIGUAN.png │ │ │ ├── MK14.png │ │ │ ├── MK20H.png │ │ │ ├── P90.png │ │ │ ├── PKM.png │ │ │ ├── SCARL.png │ │ │ ├── TANGMUXUN.png │ │ │ ├── UMP45.png │ │ │ ├── UZI.png │ │ │ ├── VECTOR.png │ │ │ ├── VSS.png │ │ │ └── YENIU.png │ │ ├── medicine │ │ ├── 急救包.png │ │ ├── 止痛药.png │ │ ├── 绷带.png │ │ ├── 肾上腺素注射剂.png │ │ └── 能量饮料.png │ │ ├── mirrors │ │ ├── 6倍镜调距按钮.png │ │ ├── delicate │ │ │ ├── 大图2倍镜.png │ │ │ ├── 大图3倍镜.png │ │ │ ├── 大图4倍镜.png │ │ │ ├── 大图6倍镜.png │ │ │ ├── 大图8倍镜.png │ │ │ ├── 大图全息.png │ │ │ └── 大图红点.png │ │ ├── text │ │ │ ├── 2倍镜文本.png │ │ │ ├── 3倍镜文本.png │ │ │ ├── 4倍镜文本.png │ │ │ ├── 6倍镜文本.png │ │ │ ├── 8倍镜文本.png │ │ │ ├── 全息文本.png │ │ │ ├── 机瞄文本.png │ │ │ └── 红点文本.png │ │ └── 第一人称文本.png │ │ └── missile │ │ ├── 取消投掷按钮.png │ │ ├── 投掷物展开按钮.png │ │ ├── 投掷物折叠按钮.png │ │ ├── 烟雾弹.png │ │ ├── 燃烧瓶.png │ │ └── 碎片手榴弹.png └── scripts │ ├── bag.ts │ ├── car.ts │ ├── constant.ts │ ├── gun.ts │ ├── keymap.ts │ ├── medicine.ts │ ├── mirror.ts │ ├── missile.ts │ ├── posture.ts │ ├── pressArgs.ts │ ├── pressCtrl.ts │ ├── skill.ts │ ├── store.ts │ └── utils.ts ├── tsconfig.json └── types ├── index.d.ts └── mapi.d.ts /.gitignore: -------------------------------------------------------------------------------- 1 | temp/ 2 | .idea 3 | node_modules 4 | dist/ 5 | -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/changelog.md -------------------------------------------------------------------------------- /docs/images/01-js-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/docs/images/01-js-settings.png -------------------------------------------------------------------------------- /docs/images/02-key-macro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/docs/images/02-key-macro.png -------------------------------------------------------------------------------- /docs/images/heping-settings.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/docs/images/heping-settings.jpg -------------------------------------------------------------------------------- /docs/images/tcg-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/docs/images/tcg-settings.png -------------------------------------------------------------------------------- /docs/官方资料/TCG单段,时间间隔压枪配置(推荐设置比较简单).zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/docs/官方资料/TCG单段,时间间隔压枪配置(推荐设置比较简单).zip -------------------------------------------------------------------------------- /docs/官方资料/TCG多段,指定像素压枪配置(不推荐调像素较麻烦).zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/docs/官方资料/TCG多段,指定像素压枪配置(不推荐调像素较麻烦).zip -------------------------------------------------------------------------------- /docs/官方资料/TCG多段,时间间隔压枪配置(推荐设置较简单).zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/docs/官方资料/TCG多段,时间间隔压枪配置(推荐设置较简单).zip -------------------------------------------------------------------------------- /docs/键位配置/2880x1800/TG_Keys_XiaoMiPad6Max14_2023-12-31.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/docs/键位配置/2880x1800/TG_Keys_XiaoMiPad6Max14_2023-12-31.properties -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/package.json -------------------------------------------------------------------------------- /qodana.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/qodana.yaml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/readme.md -------------------------------------------------------------------------------- /src/images/1600/bag/拾取列表关闭按钮.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/bag/拾取列表关闭按钮.png -------------------------------------------------------------------------------- /src/images/1600/bag/背包已打开的标志.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/bag/背包已打开的标志.png -------------------------------------------------------------------------------- /src/images/1600/car/下车按钮.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/car/下车按钮.png -------------------------------------------------------------------------------- /src/images/1600/guns/delicate/大图ACVAL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/guns/delicate/大图ACVAL.png -------------------------------------------------------------------------------- /src/images/1600/guns/delicate/大图AKM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/guns/delicate/大图AKM.png -------------------------------------------------------------------------------- /src/images/1600/guns/delicate/大图AUG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/guns/delicate/大图AUG.png -------------------------------------------------------------------------------- /src/images/1600/guns/delicate/大图DP28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/guns/delicate/大图DP28.png -------------------------------------------------------------------------------- /src/images/1600/guns/delicate/大图GROZA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/guns/delicate/大图GROZA.png -------------------------------------------------------------------------------- /src/images/1600/guns/delicate/大图M249.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/guns/delicate/大图M249.png -------------------------------------------------------------------------------- /src/images/1600/guns/delicate/大图M4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/guns/delicate/大图M4.png -------------------------------------------------------------------------------- /src/images/1600/guns/delicate/大图M417.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/guns/delicate/大图M417.png -------------------------------------------------------------------------------- /src/images/1600/guns/delicate/大图M762.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/guns/delicate/大图M762.png -------------------------------------------------------------------------------- /src/images/1600/guns/delicate/大图MG3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/guns/delicate/大图MG3.png -------------------------------------------------------------------------------- /src/images/1600/guns/delicate/大图MIGUAN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/guns/delicate/大图MIGUAN.png -------------------------------------------------------------------------------- /src/images/1600/guns/delicate/大图MK20H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/guns/delicate/大图MK20H.png -------------------------------------------------------------------------------- /src/images/1600/guns/delicate/大图P90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/guns/delicate/大图P90.png -------------------------------------------------------------------------------- /src/images/1600/guns/delicate/大图PKM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/guns/delicate/大图PKM.png -------------------------------------------------------------------------------- /src/images/1600/guns/delicate/大图SCARL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/guns/delicate/大图SCARL.png -------------------------------------------------------------------------------- /src/images/1600/guns/delicate/大图TANGMUXUN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/guns/delicate/大图TANGMUXUN.png -------------------------------------------------------------------------------- /src/images/1600/guns/delicate/大图UMP45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/guns/delicate/大图UMP45.png -------------------------------------------------------------------------------- /src/images/1600/guns/delicate/大图UZI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/guns/delicate/大图UZI.png -------------------------------------------------------------------------------- /src/images/1600/guns/delicate/大图VECTOR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/guns/delicate/大图VECTOR.png -------------------------------------------------------------------------------- /src/images/1600/guns/delicate/大图VSS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/guns/delicate/大图VSS.png -------------------------------------------------------------------------------- /src/images/1600/guns/delicate/大图YENIU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/guns/delicate/大图YENIU.png -------------------------------------------------------------------------------- /src/images/1600/guns/flat/ACVAL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/guns/flat/ACVAL.png -------------------------------------------------------------------------------- /src/images/1600/guns/flat/AK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/guns/flat/AK.png -------------------------------------------------------------------------------- /src/images/1600/guns/flat/AKM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/guns/flat/AKM.png -------------------------------------------------------------------------------- /src/images/1600/guns/flat/AUG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/guns/flat/AUG.png -------------------------------------------------------------------------------- /src/images/1600/guns/flat/DP28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/guns/flat/DP28.png -------------------------------------------------------------------------------- /src/images/1600/guns/flat/GOZA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/guns/flat/GOZA.png -------------------------------------------------------------------------------- /src/images/1600/guns/flat/GROZA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/guns/flat/GROZA.png -------------------------------------------------------------------------------- /src/images/1600/guns/flat/M249.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/guns/flat/M249.png -------------------------------------------------------------------------------- /src/images/1600/guns/flat/M4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/guns/flat/M4.png -------------------------------------------------------------------------------- /src/images/1600/guns/flat/M417.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/guns/flat/M417.png -------------------------------------------------------------------------------- /src/images/1600/guns/flat/M762.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/guns/flat/M762.png -------------------------------------------------------------------------------- /src/images/1600/guns/flat/MG3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/guns/flat/MG3.png -------------------------------------------------------------------------------- /src/images/1600/guns/flat/MIGUAN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/guns/flat/MIGUAN.png -------------------------------------------------------------------------------- /src/images/1600/guns/flat/MK20H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/guns/flat/MK20H.png -------------------------------------------------------------------------------- /src/images/1600/guns/flat/P90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/guns/flat/P90.png -------------------------------------------------------------------------------- /src/images/1600/guns/flat/PKM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/guns/flat/PKM.png -------------------------------------------------------------------------------- /src/images/1600/guns/flat/SCARL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/guns/flat/SCARL.png -------------------------------------------------------------------------------- /src/images/1600/guns/flat/TANGMUXUN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/guns/flat/TANGMUXUN.png -------------------------------------------------------------------------------- /src/images/1600/guns/flat/UMP45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/guns/flat/UMP45.png -------------------------------------------------------------------------------- /src/images/1600/guns/flat/UZI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/guns/flat/UZI.png -------------------------------------------------------------------------------- /src/images/1600/guns/flat/VECTOR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/guns/flat/VECTOR.png -------------------------------------------------------------------------------- /src/images/1600/guns/flat/VSS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/guns/flat/VSS.png -------------------------------------------------------------------------------- /src/images/1600/guns/flat/YENIU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/guns/flat/YENIU.png -------------------------------------------------------------------------------- /src/images/1600/medicine/急救包.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/medicine/急救包.png -------------------------------------------------------------------------------- /src/images/1600/medicine/止痛药.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/medicine/止痛药.png -------------------------------------------------------------------------------- /src/images/1600/medicine/绷带.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/medicine/绷带.png -------------------------------------------------------------------------------- /src/images/1600/medicine/肾上腺素注射剂.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/medicine/肾上腺素注射剂.png -------------------------------------------------------------------------------- /src/images/1600/medicine/能量饮料.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/medicine/能量饮料.png -------------------------------------------------------------------------------- /src/images/1600/mirrors/6倍镜调距按钮.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/mirrors/6倍镜调距按钮.png -------------------------------------------------------------------------------- /src/images/1600/mirrors/delicate/大图2倍镜.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/mirrors/delicate/大图2倍镜.png -------------------------------------------------------------------------------- /src/images/1600/mirrors/delicate/大图3倍镜.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/mirrors/delicate/大图3倍镜.png -------------------------------------------------------------------------------- /src/images/1600/mirrors/delicate/大图4倍镜.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/mirrors/delicate/大图4倍镜.png -------------------------------------------------------------------------------- /src/images/1600/mirrors/delicate/大图6倍镜.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/mirrors/delicate/大图6倍镜.png -------------------------------------------------------------------------------- /src/images/1600/mirrors/delicate/大图8倍镜.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/mirrors/delicate/大图8倍镜.png -------------------------------------------------------------------------------- /src/images/1600/mirrors/delicate/大图全息.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/mirrors/delicate/大图全息.png -------------------------------------------------------------------------------- /src/images/1600/mirrors/delicate/大图红点.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/mirrors/delicate/大图红点.png -------------------------------------------------------------------------------- /src/images/1600/mirrors/text/2倍镜文本.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/mirrors/text/2倍镜文本.png -------------------------------------------------------------------------------- /src/images/1600/mirrors/text/3倍镜文本.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/mirrors/text/3倍镜文本.png -------------------------------------------------------------------------------- /src/images/1600/mirrors/text/4倍镜文本.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/mirrors/text/4倍镜文本.png -------------------------------------------------------------------------------- /src/images/1600/mirrors/text/6倍镜文本.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/mirrors/text/6倍镜文本.png -------------------------------------------------------------------------------- /src/images/1600/mirrors/text/8倍镜文本.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/mirrors/text/8倍镜文本.png -------------------------------------------------------------------------------- /src/images/1600/mirrors/text/全息文本.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/mirrors/text/全息文本.png -------------------------------------------------------------------------------- /src/images/1600/mirrors/text/机瞄文本.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/mirrors/text/机瞄文本.png -------------------------------------------------------------------------------- /src/images/1600/mirrors/text/红点文本.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/mirrors/text/红点文本.png -------------------------------------------------------------------------------- /src/images/1600/mirrors/第一人称文本.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/mirrors/第一人称文本.png -------------------------------------------------------------------------------- /src/images/1600/missile/取消投掷按钮.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/missile/取消投掷按钮.png -------------------------------------------------------------------------------- /src/images/1600/missile/投掷物展开按钮.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/missile/投掷物展开按钮.png -------------------------------------------------------------------------------- /src/images/1600/missile/投掷物折叠按钮.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/missile/投掷物折叠按钮.png -------------------------------------------------------------------------------- /src/images/1600/missile/烟雾弹.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/missile/烟雾弹.png -------------------------------------------------------------------------------- /src/images/1600/missile/燃烧瓶.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/missile/燃烧瓶.png -------------------------------------------------------------------------------- /src/images/1600/missile/碎片手榴弹.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1600/missile/碎片手榴弹.png -------------------------------------------------------------------------------- /src/images/1800/bag/拾取列表关闭按钮.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/bag/拾取列表关闭按钮.png -------------------------------------------------------------------------------- /src/images/1800/bag/拾取列表关闭按钮备用2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/bag/拾取列表关闭按钮备用2.png -------------------------------------------------------------------------------- /src/images/1800/bag/背包已打开的标志.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/bag/背包已打开的标志.png -------------------------------------------------------------------------------- /src/images/1800/car/下车按钮.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/car/下车按钮.png -------------------------------------------------------------------------------- /src/images/1800/guns/delicate/大图ACVAL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/guns/delicate/大图ACVAL.png -------------------------------------------------------------------------------- /src/images/1800/guns/delicate/大图AKM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/guns/delicate/大图AKM.png -------------------------------------------------------------------------------- /src/images/1800/guns/delicate/大图AUG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/guns/delicate/大图AUG.png -------------------------------------------------------------------------------- /src/images/1800/guns/delicate/大图DP28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/guns/delicate/大图DP28.png -------------------------------------------------------------------------------- /src/images/1800/guns/delicate/大图GROZA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/guns/delicate/大图GROZA.png -------------------------------------------------------------------------------- /src/images/1800/guns/delicate/大图M249.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/guns/delicate/大图M249.png -------------------------------------------------------------------------------- /src/images/1800/guns/delicate/大图M4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/guns/delicate/大图M4.png -------------------------------------------------------------------------------- /src/images/1800/guns/delicate/大图M417.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/guns/delicate/大图M417.png -------------------------------------------------------------------------------- /src/images/1800/guns/delicate/大图M762.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/guns/delicate/大图M762.png -------------------------------------------------------------------------------- /src/images/1800/guns/delicate/大图MG3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/guns/delicate/大图MG3.png -------------------------------------------------------------------------------- /src/images/1800/guns/delicate/大图MIGUAN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/guns/delicate/大图MIGUAN.png -------------------------------------------------------------------------------- /src/images/1800/guns/delicate/大图MK20H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/guns/delicate/大图MK20H.png -------------------------------------------------------------------------------- /src/images/1800/guns/delicate/大图P90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/guns/delicate/大图P90.png -------------------------------------------------------------------------------- /src/images/1800/guns/delicate/大图PKM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/guns/delicate/大图PKM.png -------------------------------------------------------------------------------- /src/images/1800/guns/delicate/大图SCARL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/guns/delicate/大图SCARL.png -------------------------------------------------------------------------------- /src/images/1800/guns/delicate/大图TANGMUXUN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/guns/delicate/大图TANGMUXUN.png -------------------------------------------------------------------------------- /src/images/1800/guns/delicate/大图UMP45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/guns/delicate/大图UMP45.png -------------------------------------------------------------------------------- /src/images/1800/guns/delicate/大图UZI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/guns/delicate/大图UZI.png -------------------------------------------------------------------------------- /src/images/1800/guns/delicate/大图VECTOR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/guns/delicate/大图VECTOR.png -------------------------------------------------------------------------------- /src/images/1800/guns/delicate/大图VSS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/guns/delicate/大图VSS.png -------------------------------------------------------------------------------- /src/images/1800/guns/delicate/大图YENIU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/guns/delicate/大图YENIU.png -------------------------------------------------------------------------------- /src/images/1800/guns/flat/ACVAL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/guns/flat/ACVAL.png -------------------------------------------------------------------------------- /src/images/1800/guns/flat/AK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/guns/flat/AK.png -------------------------------------------------------------------------------- /src/images/1800/guns/flat/AKM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/guns/flat/AKM.png -------------------------------------------------------------------------------- /src/images/1800/guns/flat/AUG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/guns/flat/AUG.png -------------------------------------------------------------------------------- /src/images/1800/guns/flat/DP28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/guns/flat/DP28.png -------------------------------------------------------------------------------- /src/images/1800/guns/flat/GOZA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/guns/flat/GOZA.png -------------------------------------------------------------------------------- /src/images/1800/guns/flat/GROZA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/guns/flat/GROZA.png -------------------------------------------------------------------------------- /src/images/1800/guns/flat/M249.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/guns/flat/M249.png -------------------------------------------------------------------------------- /src/images/1800/guns/flat/M4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/guns/flat/M4.png -------------------------------------------------------------------------------- /src/images/1800/guns/flat/M417.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/guns/flat/M417.png -------------------------------------------------------------------------------- /src/images/1800/guns/flat/M762.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/guns/flat/M762.png -------------------------------------------------------------------------------- /src/images/1800/guns/flat/MG3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/guns/flat/MG3.png -------------------------------------------------------------------------------- /src/images/1800/guns/flat/MIGUAN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/guns/flat/MIGUAN.png -------------------------------------------------------------------------------- /src/images/1800/guns/flat/MK14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/guns/flat/MK14.png -------------------------------------------------------------------------------- /src/images/1800/guns/flat/MK20H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/guns/flat/MK20H.png -------------------------------------------------------------------------------- /src/images/1800/guns/flat/P90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/guns/flat/P90.png -------------------------------------------------------------------------------- /src/images/1800/guns/flat/PKM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/guns/flat/PKM.png -------------------------------------------------------------------------------- /src/images/1800/guns/flat/SCARL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/guns/flat/SCARL.png -------------------------------------------------------------------------------- /src/images/1800/guns/flat/TANGMUXUN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/guns/flat/TANGMUXUN.png -------------------------------------------------------------------------------- /src/images/1800/guns/flat/UMP45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/guns/flat/UMP45.png -------------------------------------------------------------------------------- /src/images/1800/guns/flat/UZI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/guns/flat/UZI.png -------------------------------------------------------------------------------- /src/images/1800/guns/flat/VECTOR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/guns/flat/VECTOR.png -------------------------------------------------------------------------------- /src/images/1800/guns/flat/VSS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/guns/flat/VSS.png -------------------------------------------------------------------------------- /src/images/1800/guns/flat/YENIU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/guns/flat/YENIU.png -------------------------------------------------------------------------------- /src/images/1800/medicine/急救包.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/medicine/急救包.png -------------------------------------------------------------------------------- /src/images/1800/medicine/止痛药.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/medicine/止痛药.png -------------------------------------------------------------------------------- /src/images/1800/medicine/绷带.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/medicine/绷带.png -------------------------------------------------------------------------------- /src/images/1800/medicine/肾上腺素注射剂.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/medicine/肾上腺素注射剂.png -------------------------------------------------------------------------------- /src/images/1800/medicine/能量饮料.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/medicine/能量饮料.png -------------------------------------------------------------------------------- /src/images/1800/mirrors/6倍镜调距按钮.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/mirrors/6倍镜调距按钮.png -------------------------------------------------------------------------------- /src/images/1800/mirrors/delicate/大图2倍镜.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/mirrors/delicate/大图2倍镜.png -------------------------------------------------------------------------------- /src/images/1800/mirrors/delicate/大图3倍镜.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/mirrors/delicate/大图3倍镜.png -------------------------------------------------------------------------------- /src/images/1800/mirrors/delicate/大图4倍镜.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/mirrors/delicate/大图4倍镜.png -------------------------------------------------------------------------------- /src/images/1800/mirrors/delicate/大图6倍镜.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/mirrors/delicate/大图6倍镜.png -------------------------------------------------------------------------------- /src/images/1800/mirrors/delicate/大图8倍镜.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/mirrors/delicate/大图8倍镜.png -------------------------------------------------------------------------------- /src/images/1800/mirrors/delicate/大图全息.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/mirrors/delicate/大图全息.png -------------------------------------------------------------------------------- /src/images/1800/mirrors/delicate/大图红点.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/mirrors/delicate/大图红点.png -------------------------------------------------------------------------------- /src/images/1800/mirrors/text/2倍镜文本.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/mirrors/text/2倍镜文本.png -------------------------------------------------------------------------------- /src/images/1800/mirrors/text/3倍镜文本.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/mirrors/text/3倍镜文本.png -------------------------------------------------------------------------------- /src/images/1800/mirrors/text/4倍镜文本.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/mirrors/text/4倍镜文本.png -------------------------------------------------------------------------------- /src/images/1800/mirrors/text/6倍镜文本.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/mirrors/text/6倍镜文本.png -------------------------------------------------------------------------------- /src/images/1800/mirrors/text/8倍镜文本.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/mirrors/text/8倍镜文本.png -------------------------------------------------------------------------------- /src/images/1800/mirrors/text/全息文本.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/mirrors/text/全息文本.png -------------------------------------------------------------------------------- /src/images/1800/mirrors/text/机瞄文本.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/mirrors/text/机瞄文本.png -------------------------------------------------------------------------------- /src/images/1800/mirrors/text/红点文本.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/mirrors/text/红点文本.png -------------------------------------------------------------------------------- /src/images/1800/mirrors/第一人称文本.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/mirrors/第一人称文本.png -------------------------------------------------------------------------------- /src/images/1800/missile/取消投掷按钮.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/missile/取消投掷按钮.png -------------------------------------------------------------------------------- /src/images/1800/missile/投掷物展开按钮.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/missile/投掷物展开按钮.png -------------------------------------------------------------------------------- /src/images/1800/missile/投掷物折叠按钮.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/missile/投掷物折叠按钮.png -------------------------------------------------------------------------------- /src/images/1800/missile/烟雾弹.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/missile/烟雾弹.png -------------------------------------------------------------------------------- /src/images/1800/missile/燃烧瓶.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/missile/燃烧瓶.png -------------------------------------------------------------------------------- /src/images/1800/missile/碎片手榴弹.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/images/1800/missile/碎片手榴弹.png -------------------------------------------------------------------------------- /src/scripts/bag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/scripts/bag.ts -------------------------------------------------------------------------------- /src/scripts/car.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/scripts/car.ts -------------------------------------------------------------------------------- /src/scripts/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/scripts/constant.ts -------------------------------------------------------------------------------- /src/scripts/gun.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/scripts/gun.ts -------------------------------------------------------------------------------- /src/scripts/keymap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/scripts/keymap.ts -------------------------------------------------------------------------------- /src/scripts/medicine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/scripts/medicine.ts -------------------------------------------------------------------------------- /src/scripts/mirror.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/scripts/mirror.ts -------------------------------------------------------------------------------- /src/scripts/missile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/scripts/missile.ts -------------------------------------------------------------------------------- /src/scripts/posture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/scripts/posture.ts -------------------------------------------------------------------------------- /src/scripts/pressArgs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/scripts/pressArgs.ts -------------------------------------------------------------------------------- /src/scripts/pressCtrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/scripts/pressCtrl.ts -------------------------------------------------------------------------------- /src/scripts/skill.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/scripts/skill.ts -------------------------------------------------------------------------------- /src/scripts/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/scripts/store.ts -------------------------------------------------------------------------------- /src/scripts/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/src/scripts/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/types/index.d.ts -------------------------------------------------------------------------------- /types/mapi.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forwardNow/tc-games-scripts/HEAD/types/mapi.d.ts --------------------------------------------------------------------------------