Cookie Clicker

Cookie Clicker

Not enough ratings
MOD作成者向けシンボリックリンクの貼り方 / How to put symbolic links for mod creators
By zyaboo
『\mods\local』もしくは『\mods\workshop』の中にシンボリックリンクを貼って作業する方法
How to work with symbolic links in "\mods\local" or "\mods\workshop"
   
Award
Favorite
Favorited
Unfavorite
手順 / Steps
  1. 『\Cookie Clicker\resources\app\start.js』をテキストエディタ等で開く
    Open "\Cookie Clicker\resources\app\start.js" in a text editor

  2. 以下の箇所にfilterに「||dirent.isSymbolicLink()」を追加する
    Add "||dirent.isSymbolicLink()" to the filter in the following place.
    let folders=fs.readdirSync(dir,{withFileTypes:true}) .filter(dirent=>dirent.isDirectory()) .map(dirent=>dirent.name);

    let folders=fs.readdirSync(dir,{withFileTypes:true}) .filter(dirent=>dirent.isDirectory()||dirent.isSymbolicLink()) .map(dirent=>dirent.name);

  3. 『\mods\local』もしくは『\mods\workshop』の中に任意のシンボリックリンクを貼る
    Place a symbolic link of your choice in "\mods\local" or "\mods\workshop".

  4. ゲームを起動する
    Launch the game.