If such a system were to be created, servers could easily chose whether or not to allow hats be set with this system by it having the server option operate as follows:
globaltailorsystemmode = 1/2/3
- 0 - disabled
- 1 - enabled, with hats
- 2 - enabled, without hats
...or if the system were to be built the way Ziro suggested....
PHP Code:
this.disabledServers = {"Graal Kingdoms", "Zone" };
this.hatsDisabled = {"Zodiac"};
if (!(servername in this.disabledServers)) {
// proceed
if (!(servername in this.hatsDisabled)) {
//set hats
}
//set other stuff
}