Server/Server/src/main/content/region/misc/tutisland/dialogue/RatPenDialogue.kt
Player Name dfb53cfa03 Made XP rates and ironman optional, locked behind new server config settings xp_rates and ironman
Removed the ironman_icons server config setting, locking it behind ironman instead
Removed the default_xp_rate server config setting and hardcoded the default xp rate to 1x
Changed a bunch of server config defaults for inauthentic features to disabled
Added enable_global_chat to the worldprops default config. Note the change from enable_globalchat to enable_global_chat
Removed the allow_slayer_rerolls worldprops config option
Large number of tutorial island improvements and authenticity enhancements
2025-11-26 00:12:56 +11:00

15 lines
527 B
Kotlin

package content.region.misc.tutisland.dialogue
import content.region.misc.tutisland.handlers.sendStageDialog
import core.game.dialogue.ChatAnim
import core.game.dialogue.DialogueLabeller
/**
* Vannaka's angry dialogue when you try to enter his rat pen before you're supposed to
*/
class RatPenDialogue : DialogueLabeller() {
override fun addConversation() {
npc(ChatAnim.ANGRY, "Oi, get away from there!", "Don't enter my rat pen unless I say so!")
exec { player, _ -> sendStageDialog(player) }
}
}