Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~507 People Reached
Favorite Forums
Favorite Tags
Member Avatar for andisss

Hello! I need to ask for a little help to build SQL query to delete some records! Table structure: `charId` int(10) DEFAULT NULL, `schameid` int(10) NOT NULL AUTO_INCREMENT, `name` varchar(250) DEFAULT '', `skills` varchar(500) DEFAULT '', PRIMARY KEY (`schameid`) ) ENGINE=MyISAM AUTO_INCREMENT=0 DEFAULT CHARSET=utf8; Some times record `skills` is empty …

Member Avatar for seslie
0
154
Member Avatar for andisss

This is Code: public static int getAutoIncrement(int ain) { int count = 0; for(SBufferScheme scheme : getInstance().listScheme) if(ain == scheme.id) count++; if(count == 0) return ain; return getAutoIncrement(ain + 1); } And this is Error: Exception in thread "ThreadPoolExecutor-10" java.lang.StackOverflowError at java.util.AbstractList$Itr.next(AbstractList.java:345) at lft.gameserver.model.ManageBbsBuffer.getAutoIncrement(ManageBbsBuffer.java:36) at lft.gameserver.model.ManageBbsBuffer.getAutoIncrement(ManageBbsBuffer.java:41) Any idea what could …

Member Avatar for NormR1
0
165
Member Avatar for andisss

Hello! I need some help dealing with this error: java.lang.ArrayIndexOutOfBoundsException: 16 at com.lameguard.crypt.LamePacket.writeB(LamePacket.java:40) at com.lameguard.LameGuard.assembleAnswer(LameGuard.java:445) at l2ft.gameserver.network.l2.c2s.ProtocolVersion.runImpl(ProtocolVersion.java:94) at l2ft.gameserver.network.l2.c2s.L2GameClientPacket.run(L2GameClientPacket.java:50) at l2ft.commons.net.nio.impl.MMOExecutableQueue.run(MMOExecutableQueue.java:38) at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908) at java.lang.Thread.run(Thread.java:662) What could be causing this? Any suggestions are welcome! Thanks

Member Avatar for NormR1
0
188