More bugfixes
This commit is contained in:
@@ -1,3 +1,4 @@
|
|||||||
|
/*
|
||||||
package core.game.content.quest.members.asoulsbane;
|
package core.game.content.quest.members.asoulsbane;
|
||||||
|
|
||||||
import core.game.node.entity.player.Player;
|
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.game.content.quest.members.asoulsbane.SoulsBaneLaunaDialogue;
|
||||||
import rs09.plugin.PluginManager;
|
import rs09.plugin.PluginManager;
|
||||||
|
|
||||||
|
*/
|
||||||
/**
|
/**
|
||||||
* Author: afaroutdude
|
* Author: afaroutdude
|
||||||
*/
|
*//*
|
||||||
|
|
||||||
@Initializable
|
@Initializable
|
||||||
public class ASoulsBane extends Quest {
|
public class ASoulsBane extends Quest {
|
||||||
public static final String NAME = "A Soul's Bane";
|
public static final String NAME = "A Soul's Bane";
|
||||||
@@ -99,3 +102,4 @@ public class ASoulsBane extends Quest {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
|||||||
+5
-1
@@ -1,3 +1,4 @@
|
|||||||
|
/*
|
||||||
package core.game.content.quest.members.asoulsbane;
|
package core.game.content.quest.members.asoulsbane;
|
||||||
|
|
||||||
import core.cache.def.impl.ObjectDefinition;
|
import core.cache.def.impl.ObjectDefinition;
|
||||||
@@ -19,9 +20,11 @@ import core.game.world.update.flag.context.Animation;
|
|||||||
import core.plugin.Plugin;
|
import core.plugin.Plugin;
|
||||||
import rs09.plugin.PluginManager;
|
import rs09.plugin.PluginManager;
|
||||||
|
|
||||||
|
*/
|
||||||
/**
|
/**
|
||||||
* Author: afaroutdude
|
* Author: afaroutdude
|
||||||
*/
|
*//*
|
||||||
|
|
||||||
|
|
||||||
public class ASoulsBanePlugin extends OptionHandler {
|
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};
|
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 {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
|||||||
@@ -88,6 +88,7 @@ public final class MerlinCrystal extends Quest {
|
|||||||
new SirLucan(),
|
new SirLucan(),
|
||||||
new SirMordredNPC(),
|
new SirMordredNPC(),
|
||||||
new SirPalomedes(),
|
new SirPalomedes(),
|
||||||
|
new SirGawainDialogue(),
|
||||||
new TheLadyOfTheLake(),
|
new TheLadyOfTheLake(),
|
||||||
new ThrantaxDialogue(),
|
new ThrantaxDialogue(),
|
||||||
new RenegadeKnightDialogue());
|
new RenegadeKnightDialogue());
|
||||||
|
|||||||
@@ -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
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
+5
-2
@@ -1,3 +1,4 @@
|
|||||||
|
/*
|
||||||
package rs09.game.content.quest.members.asoulsbane
|
package rs09.game.content.quest.members.asoulsbane
|
||||||
|
|
||||||
import core.game.content.dialogue.DialoguePlugin
|
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.Player
|
||||||
import core.game.node.entity.player.link.quest.Quest
|
import core.game.node.entity.player.link.quest.Quest
|
||||||
|
|
||||||
|
*/
|
||||||
/**
|
/**
|
||||||
* Launa
|
* Launa
|
||||||
* @author afaroutdude
|
* @author afaroutdude
|
||||||
*/
|
*//*
|
||||||
|
|
||||||
class SoulsBaneLaunaDialogue(player: Player? = null) : DialoguePlugin(player) {
|
class SoulsBaneLaunaDialogue(player: Player? = null) : DialoguePlugin(player) {
|
||||||
lateinit var quest: Quest
|
lateinit var quest: Quest
|
||||||
|
|
||||||
@@ -79,4 +82,4 @@ class SoulsBaneLaunaDialogue(player: Player? = null) : DialoguePlugin(player) {
|
|||||||
override fun getIds(): IntArray {
|
override fun getIds(): IntArray {
|
||||||
return intArrayOf(3638, 3639, 3640)
|
return intArrayOf(3638, 3639, 3640)
|
||||||
}
|
}
|
||||||
}
|
}*/
|
||||||
|
|||||||
Reference in New Issue
Block a user