Fixing Wyvern mount.
This commit is contained in:
		@@ -385,7 +385,7 @@
 | 
			
		||||
		<id>16042</id> <!-- grown_up_wolf_ride_white -->
 | 
			
		||||
	</category>
 | 
			
		||||
	<category name="WYVERN_GROUP">
 | 
			
		||||
		<id>12621</id> <!-- wyvern -->
 | 
			
		||||
		<id>15955</id> <!-- wyvern -->
 | 
			
		||||
	</category>
 | 
			
		||||
	<category name="SUBJOB_GROUP_KNIGHT">
 | 
			
		||||
		<id>5</id> <!-- paladin -->
 | 
			
		||||
 
 | 
			
		||||
@@ -44,22 +44,18 @@
 | 
			
		||||
<td><button value="4" action="bypass -h admin_superhaste 4" width=30 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"></td>
 | 
			
		||||
<td><button value="Off" action="bypass -h admin_superhaste 0" width=30 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"></td>
 | 
			
		||||
</tr></table><br>
 | 
			
		||||
<center><multiedit var="new_announcement" width=250 height=80></center>
 | 
			
		||||
<center><multiedit var="new_announcement" width=250 height=50></center>
 | 
			
		||||
<table width="160"><tr>
 | 
			
		||||
<td><button value="Announce" action="bypass -h admin_announce $new_announcement" width=65 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"></td>
 | 
			
		||||
<td><button value="Critical" action="bypass -h admin_announce_crit $new_announcement" width=65 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"></td>
 | 
			
		||||
<td><button value="On-Screen" action="bypass -h admin_announce_screen $new_announcement" width=65 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"></td>
 | 
			
		||||
<td><button value="GM Chat" action="bypass -h admin_gmchat_menu $new_announcement" width=65 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"></td>
 | 
			
		||||
</tr></table><br>
 | 
			
		||||
<!--
 | 
			
		||||
Wyvern<br1>
 | 
			
		||||
<table width=270><tr>
 | 
			
		||||
<td><button value="Fenrir" action="bypass -h admin_ride_wolf" width=65 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"></td>
 | 
			
		||||
<td><button value="Strider" action="bypass -h admin_ride_strider" width=65 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"></td>
 | 
			
		||||
<td><button value="Wyvern" action="bypass -h admin_ride_wyvern" width=65 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"></td>
 | 
			
		||||
<td><button value="Horse" action="bypass -h admin_ride_horse" width=65 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"></td>
 | 
			
		||||
</tr><tr>
 | 
			
		||||
<td><button value="Jet Bike" action="bypass -h admin_ride_bike" width=65 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"></td>
 | 
			
		||||
</tr></table>
 | 
			
		||||
-->
 | 
			
		||||
<br>
 | 
			
		||||
<td width=65></td>
 | 
			
		||||
<td><button value="Ride" action="bypass -h admin_ride_wyvern" width=65 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"></td>
 | 
			
		||||
<td><button value="Unride" action="bypass -h admin_unride" width=65 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"></td>
 | 
			
		||||
<td width=65></td>
 | 
			
		||||
</tr></table><br>
 | 
			
		||||
</center></body></html>
 | 
			
		||||
@@ -42,7 +42,7 @@ public class WyvernManager extends AbstractNpcAI
 | 
			
		||||
	
 | 
			
		||||
	// Misc
 | 
			
		||||
	private static final int CRYSTAL_B_GRADE = 1460;
 | 
			
		||||
	private static final int WYVERN = 12621;
 | 
			
		||||
	private static final int WYVERN = 15955;
 | 
			
		||||
	private static final int WYVERN_FEE = 25;
 | 
			
		||||
	private static final int STRIDER_LEVEL = 55;
 | 
			
		||||
	private static final int[] STRIDERS =
 | 
			
		||||
 
 | 
			
		||||
@@ -63,7 +63,7 @@ public class AdminRide implements IAdminCommandHandler
 | 
			
		||||
			int petRideId;
 | 
			
		||||
			if (command.startsWith("admin_ride_wyvern"))
 | 
			
		||||
			{
 | 
			
		||||
				petRideId = 12621;
 | 
			
		||||
				petRideId = 15955;
 | 
			
		||||
			}
 | 
			
		||||
			else if (command.startsWith("admin_ride_strider"))
 | 
			
		||||
			{
 | 
			
		||||
 
 | 
			
		||||
@@ -123,7 +123,7 @@ public class CastleVCmd implements IVoicedCommandHandler
 | 
			
		||||
			{
 | 
			
		||||
				if (activeChar.isClanLeader() && (activeChar.getClan().getCastleId() > 0))
 | 
			
		||||
				{
 | 
			
		||||
					activeChar.mount(12621, 0, true);
 | 
			
		||||
					activeChar.mount(15955, 0, true);
 | 
			
		||||
				}
 | 
			
		||||
				break;
 | 
			
		||||
			}
 | 
			
		||||
 
 | 
			
		||||
@@ -1,7 +1,7 @@
 | 
			
		||||
<?xml version="1.0" encoding="UTF-8"?>
 | 
			
		||||
<?xml version="1.0" encoding="UTF-8"?>
 | 
			
		||||
<pets xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/PetData.xsd">
 | 
			
		||||
	<!-- wyvern -->
 | 
			
		||||
	<pet id="12621" itemId="-1" index="99">
 | 
			
		||||
	<pet id="15955" itemId="-1" index="99">
 | 
			
		||||
		<set name="food" val="6316" />
 | 
			
		||||
		<set name="hungry_limit" val="55" />
 | 
			
		||||
		<set name="load" val="54510" />
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user