Jump to content

wongerlt

Members
  • Posts

    543
  • Credits

  • Joined

  • Last visited

  • Days Won

    7
  • Feedback

    0%

Everything posted by wongerlt

  1. what error
  2. must work, did u recompile?
  3. try comment/remove this if (!DisableGameGuard()) return FALSE;
  4. I think i found where is problem. // with this i get errors (No connection available within the specified time (option 'connectTimeout': 30,000 ms) private void updateDatabase() { try { Connection con = ConnectionPool.getConnection(); PreparedStatement stm = con.prepareStatement("DELETE FROM dungeon"); stm.executeUpdate(); }catch (Exception e) { e.printStackTrace(); } } // with this no errors private void updateDatabase() { try(Connection con = ConnectionPool.getConnection()) { PreparedStatement stm = con.prepareStatement("DELETE FROM dungeon"); stm.executeUpdate(); }catch (Exception e) { e.printStackTrace(); } } who can explain why?
  5. yes. i got one error: [Warning] Aborted connection 3 to db: 'SERVER_DB' user: 'root' host: 'localhost' (Got timeout reading communication packets)
  6. yes localhost and 127.0.01 connect successfully. Like i said error start throwing only after some hours.
  7. there no limits for user. https://prnt.sc/eJB2oWTgdo8G db url: jdbc:mariadb://127.0.0.1:3306/SERVER_DB?user=hidden&password=hidden everything fine with user/pass/db. im using linux it have iptables and firewalld but everything fine here. hm, i will try, now i enabled all logs which i found , will see tomorrow
  8. No players in server. max connections: 256. active coneections: 3 max_used_connections: 70 so problem not there. and in mariadb logs no errors
  9. Hello, maybe some one had this error?: java.sql.SQLException: No connection available within the specified time (option 'connectTimeout': 30,000 ms) at org.mariadb.jdbc.pool.Pool.getPoolConnection(Pool.java:382) at org.mariadb.jdbc.MariaDbPoolDataSource.getConnection(MariaDbPoolDataSource.java:79) at net.sf.l2j.commons.pool.ConnectionPool.getConnection(ConnectionPool.java:47) ..... ... .. .. . what can cause this error? Can't figure out it start appear only maybe after half a day. Only in game server, on login server everything fine. acis 401 what i have tried: Update mariadb connector to 3.1.2 ver. Restart vps. reinstall mariadb
  10. Divide p atk by 10 and send to client, then in interface multiple by 10.
  11. But still you can calc. which is fake and which is real by char. cords..
  12. If server doesn't have any other anti bot then its easy to bypass. Just capture `ExServerPrimitive` packets and then send back move packets.
  13. Group it by char id and select like sum(character_raid_points.*) as scores and join char table to select char name
  14. TutorialShowHtml TutorialCloseHtml http://web.archive.org/web/20190806183427/http://netpro.revengineer.eu/packets/sm_tutorialshowhtml.html
  15. so u already have 2 windows. npc dialog html and tutorial html
  16. https://drive.google.com/file/d/1m1gFQmnVcBKrMImzY0B2bI1Yw2oeL-if/view?usp=sharing firstly u need encrypt client/server packets. there are good example in this files.
  17. in items dir. can't be any subfolders must be only .xml files.
  18. easy way with org.apache.commons.lang.StringUtils action="bypass admin_test [a] $var [/a] [b] $var2 [/b] [c] $var3 [/c]" String text = StringUtils.substringBetween(command, "[a] ", " [/a]"); String text2 = StringUtils.substringBetween(command, "[b] ", " [/b]"); String text3 = StringUtils.substringBetween(command, "[c] ", " [/c]");
  19. But what point to do it? more cons than pros.
  20. 50 mb and there only two pages??
  21. Maybe this command clear anything? in game write ///showlog (with three slashes.) then in console log write `OBJ GARBAGE` you must be admin.
  22. https://l2custom.com/home https://l2custom.com * Max Level 90. * Many Custom things. * Olympiad without any custom. * All Interlude zones. * All monsters level changed ~80-96 Lvl. * GM Shop. * And much more. Server in BETA mode.
  23. https://www.4shared.com/zip/IzYhJ1JIiq/devmode.html
×
×
  • Create New...