More bugfixes

This commit is contained in:
Ceikry 2021-03-14 20:47:22 -05:00
parent 401b389c05
commit f6a19d00f4
5 changed files with 29 additions and 4 deletions

View file

@ -1,3 +1,4 @@
/*
package core.game.content.quest.members.asoulsbane;
import core.game.node.entity.player.Player;
@ -6,9 +7,11 @@ import core.plugin.Initializable;
import rs09.game.content.quest.members.asoulsbane.SoulsBaneLaunaDialogue;
import rs09.plugin.PluginManager;
*/
/**
* Author: afaroutdude
*/
*//*
@Initializable
public class ASoulsBane extends Quest {
public static final String NAME = "A Soul's Bane";
@ -99,3 +102,4 @@ public class ASoulsBane extends Quest {
}
}
}
*/

View file

@ -1,3 +1,4 @@
/*
package core.game.content.quest.members.asoulsbane;
import core.cache.def.impl.ObjectDefinition;
@ -19,9 +20,11 @@ import core.game.world.update.flag.context.Animation;
import core.plugin.Plugin;
import rs09.plugin.PluginManager;
*/
/**
* Author: afaroutdude
*/
*//*
public class ASoulsBanePlugin extends OptionHandler {
private static final int[] RIFT_IDS = {13967,13968,13969,13970,13971,13972,13973,13974,13975,13976,13977,13978,13979,13980,13981,13982,13983,13984,13985,13986,13987,13988,13989,13990,13991,13992,13993};
@ -157,3 +160,4 @@ public class ASoulsBanePlugin extends OptionHandler {
}
}
}
*/

View file

@ -88,6 +88,7 @@ public final class MerlinCrystal extends Quest {
new SirLucan(),
new SirMordredNPC(),
new SirPalomedes(),
new SirGawainDialogue(),
new TheLadyOfTheLake(),
new ThrantaxDialogue(),
new RenegadeKnightDialogue());

View file

@ -0,0 +1,13 @@
package rs09.game.content.activity.mta
import org.rs09.consts.NPCs
import rs09.game.interaction.InteractionListener
class MTAListeners : InteractionListener() {
override fun defineListeners() {
on(NPCs.MAZE_GUARDIAN_3102,NPC,"talk-to"){player,node ->
player.dialogueInterpreter.open(node.id, node)
return@on true
}
}
}

View file

@ -1,3 +1,4 @@
/*
package rs09.game.content.quest.members.asoulsbane
import core.game.content.dialogue.DialoguePlugin
@ -6,10 +7,12 @@ import core.game.content.quest.members.asoulsbane.ASoulsBane
import core.game.node.entity.player.Player
import core.game.node.entity.player.link.quest.Quest
*/
/**
* Launa
* @author afaroutdude
*/
*//*
class SoulsBaneLaunaDialogue(player: Player? = null) : DialoguePlugin(player) {
lateinit var quest: Quest
@ -79,4 +82,4 @@ class SoulsBaneLaunaDialogue(player: Player? = null) : DialoguePlugin(player) {
override fun getIds(): IntArray {
return intArrayOf(3638, 3639, 3640)
}
}
}*/