© 2026 Hedgehog Software, LLC
function dontShowWelcome() { game.settings.register(MODULE_ID, 'dontShowWelcome', { name: game.i18n.localize('GAS.Setting.DontShowWelcome.Name'), hint: game.i18n.localize('GAS.Setting.DontShowWelcome.Hint'), scope: 'user', config: true, default: false, type: Boolean, onChange: () => { alert('o'); } });
TJSGameSettings
onChange
class trackerSettings extends TJSGameSettings { this.register({ namespace, key: "enable-tracker", options: { name: game.i18n.localize('Name'), hint: game.i18n.localize('Hint'), scope: "world", config: true, type: Boolean, default: true, onchange: () => { alert('o'); } } });
Join the Discord to ask follow-up questions and connect with the community
219 Members