Howl3r Posted September 30, 2012 Posted September 30, 2012 yea sure whatever you say... i still don't believe you the way you handle the database it's the same as it is in issle's... Quote
Erlandys Posted September 30, 2012 Author Posted September 30, 2012 You see I have no intention of copying code, I have made couple other shares which are unique, but I didn't copied anything, what I get from copying? Nothing.... Quote
MaKasTreRo Posted October 2, 2012 Posted October 2, 2012 El codigo solo funciona con otro target? puedes codificarlo para que funcione tambien con mi target como el antiguo dressme. Quote
Erlandys Posted October 2, 2012 Author Posted October 2, 2012 El codigo solo funciona con otro target? puedes codificarlo para que funcione tambien con mi target como el antiguo dressme. Well sorry, I can't write in Spain language and translated with google translate, if I understood good, you want, what I can took myself dressme, so you should rework this: in diff line 539 (or in DressMe.java): + if (!(activeChar.getTarget() instanceof L2PcInstance) || activeChar.getTarget() == activeChar) { And just remove this part: || activeChar.getTarget() == activeChar So it must look like this: if (!(activeChar.getTarget() instanceof L2PcInstance)) { Quote
MaKasTreRo Posted October 9, 2012 Posted October 9, 2012 Well sorry, I can't write in Spain language and translated with google translate, if I understood good, you want, what I can took myself dressme, so you should rework this: in diff line 539 (or in DressMe.java): + if (!(activeChar.getTarget() instanceof L2PcInstance) || activeChar.getTarget() == activeChar) { And just remove this part: || activeChar.getTarget() == activeChar So it must look like this: if (!(activeChar.getTarget() instanceof L2PcInstance)) { Works with my target but I have a problem with the game server : WARNING: Unclosed connection! Trace: com.l2jserver.gameserver.model.actor.instance.L2PcInstance.checkIfExist(L2PcInstance.java:15510) java.lang.RuntimeException at com.l2jserver.L2DatabaseFactory.getConnection(L2DatabaseFactory.java:273) at com.l2jserver.gameserver.model.actor.instance.L2PcInstance.checkIfExist(L2PcInstance.java:15510) at com.l2jserver.gameserver.model.actor.instance.L2PcInstance.storeVisualArmors(L2PcInstance.java:15527) at com.l2jserver.gameserver.model.actor.instance.L2PcInstance.store(L2PcInstance.java:7732) at com.l2jserver.gameserver.model.actor.instance.L2PcInstance.store(L2PcInstance.java:7744) at com.l2jserver.gameserver.model.actor.instance.L2PcInstance.deleteMe(L2PcInstance.java:11640) at com.l2jserver.gameserver.network.clientpackets.CharacterCreate.initNewChar(CharacterCreate.java:330) at com.l2jserver.gameserver.network.clientpackets.CharacterCreate.runImpl(CharacterCreate.java:204) at com.l2jserver.gameserver.network.clientpackets.L2GameClientPacket.run(L2GameClientPacket.java:62) at com.l2jserver.gameserver.network.L2GameClient.run(L2GameClient.java:1072) at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) at java.lang.Thread.run(Unknown Source) Quote
~~Darius~~ Posted October 11, 2012 Posted October 11, 2012 Hi Erlandysi have that error http://s6.ifotos.pl/img/Przechwyt_xrsqerx.PNG //Ok That Problem is Fixed By SweeTs Thx ;d Quote
SweeTs Posted October 11, 2012 Posted October 11, 2012 Go to L2PcInstance, find private void restoreVisualArmors() and change try { Connection con = L2DatabaseFactory.getInstance().getConnection(); to try (Connection con = L2DatabaseFactory.getInstance().getConnection(); and after PreparedStatement statement = con.prepareStatement("SELECT * FROM character_visual_armors WHERE charId=?"); open { As I see in the code, you have to do the same in 4 places (including this one) ---- Generally, you should take a look at existing method how it looks like. :) Quote
~~Darius~~ Posted October 11, 2012 Posted October 11, 2012 i have too that visual bug : http://s6.ifotos.pl/img/Shot00005_xraprew.jpg And That Error: http://s6.ifotos.pl/img/sdpng_xrawpnw.png Quote
MaKasTreRo Posted October 12, 2012 Posted October 12, 2012 Go to L2PcInstance, find private void restoreVisualArmors() and change try { Connection con = L2DatabaseFactory.getInstance().getConnection(); to try (Connection con = L2DatabaseFactory.getInstance().getConnection(); and after PreparedStatement statement = con.prepareStatement("SELECT * FROM character_visual_armors WHERE charId=?"); open { As I see in the code, you have to do the same in 4 places (including this one) ---- Generally, you should take a look at existing method how it looks like. :) and after Code: [select] PreparedStatement statement = con.prepareStatement("SELECT * FROM character_visual_armors WHERE charId=?"); open { ???????????????????? Quote
g4m3r69 Posted October 17, 2012 Posted October 17, 2012 i have too that visual bug : http://s6.ifotos.pl/img/Shot00005_xraprew.jpg And That Error: http://s6.ifotos.pl/img/sdpng_xrawpnw.png I have the same problem. Please help me Quote
Kzah Posted October 24, 2012 Posted October 24, 2012 Hello and thank you for this contribution. ;D It's normal that we do not see the visual armor on our character when she is activated but that the others see her ? Ps : Sorry for my english. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.