Addition of missing instance info and name refactoring for Monastery of Silence instance.

This commit is contained in:
MobiusDev
2016-10-01 07:46:24 +00:00
parent 553910660b
commit 6866639b70
15 changed files with 125 additions and 17 deletions

View File

@@ -1,5 +1,5 @@
<html><html>Sister of Silence Eris:<br>
Finally we meet, Successors of Fate. In the end, the endless Bridle of Eternity will be back where it belongs.<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest MonasteryOfSilence1 EXIT">"I'd like to go outside."</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest MonasteryOfSilence EXIT">"I'd like to go outside."</Button>
<Button ALIGN=LEFT ICON="QUEST" action="bypass -h npc_%objectId%_Quest">Quest</Button>
</body></html>

View File

@@ -1,3 +1,3 @@
<html><body>Teleportation Device: Move to East Watcher's Room.<br><br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest MonasteryOfSilence1 EAST">Move to East Watcher's Room</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest MonasteryOfSilence EAST">Move to East Watcher's Room</Button>
</body></html>

View File

@@ -1,3 +1,3 @@
<html><body>Teleportation Device: Move to West Watcher's Room.<br><br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest MonasteryOfSilence1 WEST">Move to West Watcher's Room</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest MonasteryOfSilence WEST">Move to West Watcher's Room</Button>
</body></html>

View File

@@ -1,3 +1,3 @@
<html><body>Teleportation Device: Move to North Watcher's Room.<br><br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest MonasteryOfSilence1 NORTH">Move to North Watcher's Room</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest MonasteryOfSilence NORTH">Move to North Watcher's Room</Button>
</body></html>

View File

@@ -1,3 +1,3 @@
<html><body>Teleportation Device: Move to South Watcher's Room.<br><br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest MonasteryOfSilence1 SOUTH">Move to South Watcher's Room</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest MonasteryOfSilence SOUTH">Move to South Watcher's Room</Button>
</body></html>

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package instances.MonasteryOfSilence1;
package instances.MonasteryOfSilence;
import com.l2jmobius.gameserver.enums.ChatType;
import com.l2jmobius.gameserver.enums.Movie;
@@ -31,7 +31,7 @@ import instances.AbstractInstance;
* Monastery of Silence instance zone.
* @author Adry_85
*/
public final class MonasteryOfSilence1 extends AbstractInstance
public final class MonasteryOfSilence extends AbstractInstance
{
// NPCs
private static final int ELCADIA_INSTANCE = 32787;
@@ -70,7 +70,7 @@ public final class MonasteryOfSilence1 extends AbstractInstance
// Misc
private static final int TEMPLATE_ID = 151;
public MonasteryOfSilence1()
public MonasteryOfSilence()
{
addFirstTalkId(TELEPORT_CONTROL_DEVICE1, TELEPORT_CONTROL_DEVICE2, TELEPORT_CONTROL_DEVICE3, TELEPORT_CONTROL_DEVICE4, ERIS_EVIL_THOUGHTS);
addStartNpc(ODD_GLOBE, TELEPORT_CONTROL_DEVICE1, TELEPORT_CONTROL_DEVICE2, TELEPORT_CONTROL_DEVICE3, TELEPORT_CONTROL_DEVICE4, ERIS_EVIL_THOUGHTS);
@@ -183,6 +183,6 @@ public final class MonasteryOfSilence1 extends AbstractInstance
public static void main(String[] args)
{
new MonasteryOfSilence1();
new MonasteryOfSilence();
}
}