FFs Posted June 28, 2011 Author Posted June 28, 2011 i have errors in some .java. i can ´t put ctf in my last l2jserver :( how i cna solve this problems Put the errors, i can tell you how to fix it.
FFs Posted June 28, 2011 Author Posted June 28, 2011 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.
FFs Posted June 28, 2011 Author Posted June 28, 2011 Erro Again !! I Remove sendPacket(new SystemMessage(SystemMessageId.YOU_CANNOT_MOUNT_A_STEED_WHILE_HOLDING_A_FLAG)); is ADD sendPacket(SystemMessage.getSystemMessage(SystemMessageId.YOU_CANNOT_MOUNT_A_STEED_WHILE_HOLDING_A_FLAG)); Is Compiled have a problem? Only way they thought You used the patch and guide i put avobe?
Wanteds Posted June 28, 2011 Posted June 28, 2011 Yes, e erro ! (( sendPacket(SystemMessage.getSystemMessage(SystemMessageId.YOU_CANNOT_MOUNT_A_STEED_WHILE_HOLDING_A_FLAG)); Have problem ?
FFs Posted June 30, 2011 Author Posted June 30, 2011 Yes, e erro ! (( sendPacket(SystemMessage.getSystemMessage(SystemMessageId.YOU_CANNOT_MOUNT_A_STEED_WHILE_HOLDING_A_FLAG)); Have problem ? Put the mouse ON the error and put the FIRST option who will appear on a box. Thats all. That will make SystemMessageId.java Public.
Kuch Posted July 4, 2011 Posted July 4, 2011 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. thx guy!
FFs Posted July 4, 2011 Author Posted July 4, 2011 thx guy! Np, if u have problems or question just send me a pm or reply this post.
katian Posted July 8, 2011 Posted July 8, 2011 I have an error in this part PcInstance public boolean checkPvpSkill(L2Object target, L2Skill skill) { // Add and Modified by CTF Event if (_inEventCTF && CTF._started) return true; else return checkPvpSkill(target, skill, false); } and solved it ;D
FFs Posted July 8, 2011 Author Posted July 8, 2011 I have an error in this part PcInstance public boolean checkPvpSkill(L2Object target, L2Skill skill) { // Add and Modified by CTF Event if (_inEventCTF && CTF._started) return true; else return checkPvpSkill(target, skill, false); } and solved it ;D You have to import CTF.java from java/com/l2jserver/gameserver/model/entity/CTF.java
FFs Posted July 9, 2011 Author Posted July 9, 2011 I have another problem if I can help The second error is common, thats an error from unequip an item but dont press atention to that. The first error, is a screen message you need to create on SystemMessageId.java
katian Posted July 9, 2011 Posted July 9, 2011 The second error is common, thats an error from unequip an item but dont press atention to that. any suggestions on how to solve?
FFs Posted July 10, 2011 Author Posted July 10, 2011 any suggestions on how to solve? I dont do nothing for the second error because doesnt affect nothing ingame. And if you want to solve it, you must ask to another person who knows more about java than me hehe.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now