Open notepad
Copy and past the code:
### Eclipse Workspace Patch 1.0
#P L2J_Server
Index: java/com/l2jserver/gameserver/network/SystemMessageId.java
===================================================================
--- java/com/l2jserver/gameserver/network/SystemMessageId.java (revision 4668)
+++ java/com/l2jserver/gameserver/network/SystemMessageId.java (working copy)
@@ -14693,6 +14693,12 @@
public static final SystemMessageId THOMAS_D_TURKEY_DISAPPEARED;
/**
+ * ID: 6506<br>
+ * Message: You cannot mount a Steed while holding a flag!
+ */
+ public static SystemMessageId YOU_CANNOT_MOUNT_A_STEED_WHILE_HOLDING_A_FLAG = null;
+
+ /**
* Array containing all SystemMessageIds<br>
* Important: Always initialize with a length of the highest SystemMessageId + 1!!!
*/
@@ -17116,6 +17122,7 @@
THOMAS_D_TURKEY_APPEARED = new SystemMessageId(6503);
THOMAS_D_TURKEY_DEFETED = new SystemMessageId(6504);
THOMAS_D_TURKEY_DISAPPEARED = new SystemMessageId(6505);
+ YOU_CANNOT_MOUNT_A_STEED_WHILE_HOLDING_A_FLAG = new SystemMessageId(6506);
buildFastLookupTable();
}
Save the code as: fixforctf.diff
Open Eclipse
Right Click on L2J_Server - Team - Apply Patch
Select the archive you created
Next, Next, Guess, Finish
And problem resolved.
If the problem still there, put the mouse cursor on the error and click on the first fast fix.
Thats all.