Post

Screeps 回坑

Screeps 回坑步骤

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// 换源
npm config set registry https://registry.npm.taobao.org
// 清空缓存
npm cache clear --force
// 自动补全(声明文件)
npm install @types/screeps @types/lodash@3.10.1
// 安装rollup
npm install -D rollup
// 安装插件
npm install rollup-plugin-clear rollup-plugin-screeps rollup-plugin-copy -D
// 根目录下创建文件.secret.json
// .secret.json文件中填入如下内容,根据实际情况修改
{
    "main": {
        "token": "你的 screeps token 填在这里",
        "protocol": "https",
        "hostname": "screeps.com",
        "port": 443,
        "path": "/",
        "branch": "default"
    },
    "local": {
        "copyPath": "你要上传到的游戏路径,例如 C:\\Users\\DELL\\AppData\\Local\\Screeps\\scripts\\screeps.com\\default"
    }
}

参考资料

  1. Screep 中文教程目录 —— HoPGoldy
This post is licensed under CC BY 4.0 by the author.