32public class SettingWriter
extends InterfaceWriter {
33 private String[] text = {
35 "</col>Welcome screen: " + format(player.settings.welcomeScreen),
36 "</col>TriviaBot: " + format(player.settings.triviaBot),
37 "</col>Global yell: " + format(player.settings.yell),
38 "</col>Drop notification: " + format(player.settings.dropNotification),
39 "</col>Untradeables notification: " + format(player.settings.untradeableNotification),
40 "</col>Prestige colors: " + format(player.settings.prestigeColors),
41 "</col>Screenshot kills: " + format(player.settings.screenshotKill),
45 public SettingWriter(
Player player) {
49 private String format(
boolean parameter) {
50 return parameter ?
"<col=47781F>Enabled" :
"<col=F02E2E>Disabled";
54 protected int startingIndex() {
59 protected String[] text() {
64 protected int[][] color() {
69 protected int[][] font() {