You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
privateval fullPartyNotification by BooleanSetting("Full Party Notification", default =true, description ="Notifies you when your party is full.")
28
28
privateval joinSound by BooleanSetting("Party Join Sound", default =false, description ="Plays a sound when someone joins your party.")
29
+
29
30
privateval soundDropdown by DropdownSetting("Sound Dropdown")
30
31
privateval waitForKick by BooleanSetting("Wait for Kick", default =true, description ="Waits to see if the player will be kicked before playing the sound.").withDependency { joinSound && soundDropdown }
31
-
32
-
privateval sound by SelectorSetting("Click Sound", "note.pling", defaultSounds, description ="Which sound to play when you click in a terminal.").withDependency { joinSound && soundDropdown}
32
+
privateval sound by SelectorSetting("Click Sound", "note.pling", defaultSounds, description ="Which sound to play").withDependency { joinSound && soundDropdown}
33
33
privateval customSound by StringSetting("Custom Click Sound", "note.pling",
34
34
description ="Name of a custom sound to play. This is used when Custom is selected in the Sound setting.", length =32
privateval informkicked by BooleanSetting("Inform Kicked", default =false, description ="Informs the player why they were kicked.").withDependency { autoKickDropdwon }
51
51
privateval autokicktoggle by BooleanSetting("Auto Kick", default =false, description ="Automatically kicks players who don't meet requirements.").withDependency { autoKickDropdwon }
52
52
privateval timeKick by BooleanSetting("Check Time", default =false, description ="Kicks for time").withDependency { autoKickDropdwon && autokicktoggle }
53
-
privateval timeMinutes by NumberSetting("Minutes", 5, 0, 10, description ="Time minimum in minutes.", unit ="m").withDependency { autoKickDropdwon && autokicktoggle }
54
-
privateval timeSeconds by NumberSetting("Seconds", 0, 0, 60, description ="Time minimum in seconds.", unit ="s").withDependency { autoKickDropdwon && autokicktoggle }
53
+
privateval timeMinutes by NumberSetting("Minutes", 5, 0, 10, description ="Time minimum in minutes.", unit ="m").withDependency { timeKick &&autoKickDropdwon && autokicktoggle }
54
+
privateval timeSeconds by NumberSetting("Seconds", 0, 0, 60, description ="Time minimum in seconds.", unit ="s").withDependency { timeKick &&autoKickDropdwon && autokicktoggle }
0 commit comments