This is a simple script for auto-clicking in Cookie Clicker.
Info.txt
{ "名前": "auto clicker mod", "ID": "reuppbee autoclicker", "著者": "reuppbee", "説明": "an auto clicker mod in it's simplest form", "ModVersion": 1, "GameVersion": 2.031, "日付": "13/08/2021", "Dependencies": [], "無効": 1, "AllowSteamAchievs":1 }
Main.js
Game.registerMod("auto clicker mod", { init: 関数 () { Game.Notify('auto clicker enabled', 'you cannot disable it unless you disable the whole mod and restart your game', 3, 6) Game.registerHook('logic', 関数 () { Game.ClickCookie(); }); }, });