I wanted a simple addon to set a keybind or toggle for Settings > Gameplay > Tutorials > OFF
Based on Autoloot toggle:
https://www.esoui.com/downloads/info455-AutolootToggle.html
Ideally there would be a way to a way to disable them account-wide; I've been playing this since 2014, really don't need them

I need mainly this for PTS where I sometimes create a lot of tester characters in quick succession: Having the tutorials pop up for each one slows me down, as does menu-surfing.
Synced Account Settings does not handle this and did not work on the PTS at time of writing. (EDIT: See Masteroshi's reply below; SAS does work! My toggle is just a backup plan.)
So it's just a simple chat command: /tt
I've never uploaded addons to ESOUI and don't really want to get into that right now, so if anyone else needs this (or want to improve upon it) - Here's the code and file structure:

ToggleTutorial.lua
function ToggleTutorial()
local tutorialSetting = GetSetting(SETTING_TYPE_TUTORIAL, TUTORIAL_ENABLED_SETTING_ID);
if (tutorialSetting == "1") then
tutorialSetting = "0";
d("Tutorials are now off");
else
tutorialSetting = "1";
d("Tutorials are now on");
end
SetSetting(SETTING_TYPE_TUTORIAL, TUTORIAL_ENABLED_SETTING_ID, tutorialSetting, 1);
end
SLASH_COMMANDS["/toggletutorial"]= ToggleTutorial
SLASH_COMMANDS["/tt"]= ToggleTutorial
ToggleTutorial.txt
## Title: ToggleTutorial
## Author: #MoonPile
## Version: 1.0
## APIVersion: 100003
ToggleTutorial.lua
Edited by MoonPile on October 4, 2025 5:21PM