Cookie Clicker – How to Put Symbolic Links for Mod Creators

Cookie Clicker – How to Put Symbolic Links for Mod Creators 1 - steamlists.com
Cookie Clicker – How to Put Symbolic Links for Mod Creators 1 - steamlists.com

『\mods\local』もしくは『\mods\workshop』

How to work with symbolic links in “\mods\local” or “\mods\workshop”

Steps

  1. 『\Cookie Clicker\resources\app\start.js』

    Open “\Cookie Clicker\resources\app\start.js” in a text editor

  2. 「||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』
     
  4. Place a symbolic link of your choice in “\mods\local” or “\mods\workshop”.
    Launch the game.

 

Written by zyaboo

I hope you enjoy the Guide we share about Cookie Clicker – How to Put Symbolic Links for Mod Creators; if you think we forget to add or we should add more information, please let us know via commenting below! See you soon!


Be the first to comment

Leave a Reply

Your email address will not be published.


*