forked from 2009Scape/Server
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
15 lines
527 B
Kotlin
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) }
|
|
}
|
|
}
|