Jump to content

<< Masterio >>

Members
  • Posts

    252
  • Credits

  • Joined

  • Last visited

  • Days Won

    6
  • Feedback

    0%

Everything posted by << Masterio >>

  1. Sorry guys, now I am android games developer and I have no time for JAVA [perhaps in the future]. PS: Code have some bugs for sure, I started learn java on it, if you are good in programming you can improve it on your own ;)
  2. Try to use "User Command", but it require edit 1 of client file.
  3. yes the diff files inside, but it is diff for clear server files.
  4. I released the new version only for H5 server (i have no time for conversions this time). Thanks for using.
  5. I am using JDK 1.7 and it works fine. First check your classpath in eclipse for wrong libs etc, if ok try to update JDK to 1.7, if still not works try to google (i have no idea). GL ;)
  6. it should works on any java pack. Only imports and some methods names can be different.
  7. u can try: ThreadPoolManager.getInstance().executeGeneral(...)
  8. as you can see the param is not complete, RewardList:<rankId>,<pageNo> is correct format. I think you change something in RankPvpSystemPvpStatus.
  9. // try to add this check: else if(param.startsWith("RewardList:")) { System.out.println(param); // <- here, I want to know about the parameters. try {
  10. If you have problem, install jdk 1.7 and change project settings for jdk 1.7 ( Frozen is supporting JDK 1.7). RMB on Project -> Properties -> Java Compiler: it will be the fastest way for You.
  11. Yes, like i sad, i reworked everything for jdk 1.7. It is mean you should change project settings for jdk 1.7 or rework the code in empty brackets: <> you should add for example: JDK 1.7: Map<Integer, TopField> tmpTopGatherersTable = new LinkedHashMap<>(); JDK 1.6: Map<Integer, TopField> tmpTopGatherersTable = new LinkedHashMap<Integer, TopField>(); * find diffrence ;)
  12. check configuration file, the RankRpcAmount option is a list of points f.e: If you use 42 ranks it should looks like this: RankRpcAmount = 42,40,39,38,37,36,35,34,33,32,31,30,29,28,27,26,25,24,23,22,21,20,19,18,17,16,15,14,13,12,11,10,9,8,7,6,5,4,3,2,1,1 if you use 10 ranks then it should looks like this: RankRpcAmount = 9,8,7,6,5,4,3,2,1,1 (you should keep order in all options) * this is list of rank points awarded for each rank. ** if you want use that option for define const points you should write something like this: RankRpcAmount = 50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50 Same situation for TopTableUpdateTimes: TopTableUpdateTimes = 3:00,20:55 format is: HH:MM,HH:MM,HH:MM ... if you dont want use top table, you should set: TopListEnabled = False
  13. I have new system on my pc, i will install it on frozen server and i will check it. Thanks for report.
  14. if you used older versions of RPS you should rise image prefix to 7. Then the images will obtain new prefix id and then each client will reload images for RPS. You shouldn't decrease prefix. Gimme info if it is working.
  15. Probably you forgot put the "images" folder in ".\game\data".
  16. Amida Nguyen You should include RPS version and chronicle what u are using.
  17. I prefer old methods :D Because it must works on java 1.6 too ;)
  18. Maybe something like this: try (Connection con = L2DatabaseFactory.getInstance().getConnection()) { statement = con.createStatement(); statement.addBatch(insert1); statement.addBatch(insert2); statement.addBatch(update1); statement.addBatch(update2); statement.addBatch(update3); statement.addBatch(delete1); statement.addBatch(delete2); statement.batchExecute(); statement = con.prepareStatement(select1); ResultSet rset = statement.executeQuery(); something(rset); } catch (SQLException e) { _log.error(e); }
×
×
  • Create New...