Jump to content

maxicroma

Members
  • Posts

    225
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by maxicroma

  1. So since interlude chronicle when a monster attacks you , it auto targets the monster , i need to disable it , like on C1-C4 was. Im using vanganth extender also have sources ,but have no idea wheare to take a look.
  2. yes maybe but i will be a lot of work to do . The normal thing would be that if I decompile something I should be able to compile it again if I didn't modify it, right?
  3. Hello im kind of new in the interface edit/compiling . So it goes like this: 1- Decompiled interface.u with WOTgrealExporter. 2-Now i try to compile this same interface decompiled (without anny modification just to check if the compiler works) with the tool shared by Akar0 (Akar0 Post) (interlude interface). 3-When i use the UIScript.exe after 5 seconds it closes and get this log error https://pastebin.com/Mkr95bN9 UICommonAPI.uc(18) : Error, Missing variable name Its says that there its a missing variable but I did not edit any files. (just decompiled and tried to compile without anny modification). I uploaded too the classes decompiled and also interface.u (it has no encryptation) Classes and Interface.u
  4. link off @Celestine can you reupload it?
  5. Well ,i do this ,but first i need to decrypt it with a regular decryter no? this its the file that i get after use the SmartDecrypt.dll on the ogg.dll https://www.mediafire.com/file/2q606t5jqkz2cx7/decrypted_file.txt/file First of all sorry for double post . Finally it working for me ,i screw up on the CFF part ,i forgot to check the "create new section"
  6. wow its working ,maybe you can give me a little hand of how to do it :D? (i have a lot files to decompile to ) ,maybe my regular decompiler its not working?
  7. Hello there after follow to the letter your guide im stuck with the final file called "decrypted_file.txt" ,i used this tool to decrypt the regular encrypt (413). also i attached the file wich im try to decrypt https://www.mediafire.com/file/b6xqfaov3yea91y/systemmsg-e.dat/file
  8. its shared for free on somme russian forums ,this one its not binded so you don't need key. GF Vanganth Last
  9. i found some crap inside the sources this thing called pvpzone.java package zones; import java.util.concurrent.ScheduledFuture; import l2f.commons.threading.RunnableImpl; import l2f.gameserver.ThreadPoolManager; import l2f.gameserver.listener.zone.OnZoneEnterLeaveListener; import l2f.gameserver.model.Creature; import l2f.gameserver.model.Player; import l2f.gameserver.model.Zone; import l2f.gameserver.scripts.ScriptFile; import l2f.gameserver.utils.ReflectionUtils; /** * @author L2Mythras */ public class PvPZone implements ScriptFile { private static ZoneListener _zoneListener; @Override public void onLoad() { _zoneListener = new ZoneListener(); Zone zone = ReflectionUtils.getZone("[pvp_zone_toi]"); zone.addListener(_zoneListener); } @Override public void onReload() { on reload } @Override public void onShutdown() { on shutdown } public class ZoneListener implements OnZoneEnterLeaveListener { @Override public void onZoneEnter(Zone zone, Creature cha) { ScheduledFuture<?> _checkTask = null; if (zone.getParams() == null || !cha.isPlayable()) return; if (!cha.isPlayer()) return; cha.getPlayer().sendMessage("You have entered in a PvP Zone!"); cha.startPvPFlag(null); cha.getPlayer().sendMessage("You are now flagged!"); _checkTask = ThreadPoolManager.getInstance().scheduleAtFixedRate(new checkZone((Player)cha, zone, _checkTask), 60000, 60000); } public class checkZone extends RunnableImpl { Player _cha; Zone _zone; ScheduledFuture<?> _checkTask; public checkZone(Player cha, Zone zone, ScheduledFuture<?> checkTask) { _cha = cha; _zone = zone; _checkTask = checkTask; } @Override public void runImpl() throws Exception { if(_cha.isInZone(_zone)) { _cha.startPvPFlag(null); } else { _checkTask.cancel(true); _checkTask = null; } } } @Override public void onZoneLeave(Zone zone, Creature cha) { if (cha == null) return; cha.getPlayer().sendMessage("You have left the PvP Zone !"); cha.getPlayer().stopPvPFlag(); } } }
  10. Hi im using L2Mythras files h5,i want to make a custom instant flag zone (you will be flagged all the time inside that zone). Its possible to made it ?
  11. Hi im looking for some help to change how the "Ancient Enchants" works on H5. Here its a enchant description pic. As you can read this enchant has a limit ,you can only use it on weapons by above +16. So Basically i want to change this restriction to use it from +15 to +20. Im using H5 Mythras Files ,i tried to find this "Restriction" on sources but i couldn't.
  12. Awesome its working ,thx you dude :)
  13. Great how should i run this script ,(seriously ,have no idea )?
  14. The Hauthd have a reload option ,there its some way to call this function every x time ?
  15. i tried in both ip to put 127.0.0.1 ,but its the same it stucks on the server selection
  16. Basically i need to setup a L2OFF server with a dynamic ip(this ip changes every time that the modem restarts) I have a no-ip service,and vangath files ,so i use a noip of 15 letters (it can't containt more than 15 lettters on the dbo.server table) Example serv67.ddns.net So When Hauth Loads the server it says External IP "127.0.0.1" ,why not serv67.ddns.net? No problem i tried to log in the server but it get stucked on the server seleccion screen. Both ports are open
  17. Great dude thx you :)
  18. Well i added some lines more public static synchronized void setNewOlympiadEnd() { Announcements.getInstance().announceToAll(new SystemMessage(SystemMsg.ROUND_S1_OF_THE_GRAND_OLYMPIAD_GAMES_HAS_STARTED).addNumber(Olympiad._currentCycle)); Calendar currentTime = Calendar.getInstance(); currentTime.set(Calendar.DAY_OF_WEEK, Calendar.SUNDAY); currentTime.set(Calendar.AM_PM, Calendar.AM); currentTime.set(Calendar.HOUR, 12); currentTime.set(Calendar.MINUTE, 0); currentTime.set(Calendar.SECOND, 0); if (currentTime.getTimeInMillis() < System.currentTimeMillis()) currentTime.add(Calendar.WEEK_OF_MONTH, 1); _olympiadEnd = currentTime.getTimeInMillis(); Calendar nextChange = Calendar.getInstance(); Olympiad._nextWeeklyChange = nextChange.getTimeInMillis() + Config.ALT_OLY_WPERIOD; Olympiad._isOlympiadEnd = false; Announcements.getInstance().announceToAll(new SystemMessage2(SystemMsg.OLYMPIAD_PERIOD_S1_HAS_STARTED).addInteger(Olympiad._currentCycle)); } And wheare says _olympiadEnd = currentTime.getTimeInMillis() ; I get this error
  19. package l2f.gameserver.model.entity.olympiad; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import java.util.ArrayList; import java.util.Calendar; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.concurrent.ConcurrentHashMap; import l2f.commons.dbutils.DbUtils; import l2f.gameserver.Announcements; import l2f.gameserver.Config; import l2f.gameserver.dao.OlympiadNobleDAO; import l2f.gameserver.database.DatabaseFactory; import l2f.gameserver.instancemanager.ServerVariables; import l2f.gameserver.model.base.ClassId; import l2f.gameserver.network.serverpackets.SystemMessage; import l2f.gameserver.network.serverpackets.SystemMessage2; import l2f.gameserver.network.serverpackets.components.SystemMsg; import l2f.gameserver.templates.StatsSet; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class OlympiadDatabase { private static final Logger _log = LoggerFactory.getLogger(OlympiadDatabase.class); public static synchronized void loadNoblesRank() { Olympiad._noblesRank = new ConcurrentHashMap<Integer, Integer>(); Map<Integer, Integer> tmpPlace = new HashMap<Integer, Integer>(); Connection con = null; PreparedStatement statement = null; ResultSet rset = null; try { con = DatabaseFactory.getInstance().getConnection(); statement = con.prepareStatement(OlympiadNobleDAO.GET_ALL_CLASSIFIED_NOBLESS); rset = statement.executeQuery(); int place = 1; while (rset.next()) tmpPlace.put(rset.getInt(Olympiad.CHAR_ID), place++); } catch(Exception e) { _log.error("Olympiad System: Error!", e); } finally { DbUtils.closeQuietly(con, statement, rset); } int rank1 = (int) Math.round(tmpPlace.size() * 0.01); int rank2 = (int) Math.round(tmpPlace.size() * 0.10); int rank3 = (int) Math.round(tmpPlace.size() * 0.25); int rank4 = (int) Math.round(tmpPlace.size() * 0.50); if (rank1 == 0) { rank1 = 1; rank2++; rank3++; rank4++; } for (int charId : tmpPlace.keySet()) if (tmpPlace.get(charId) <= rank1) Olympiad._noblesRank.put(charId, 1); else if (tmpPlace.get(charId) <= rank2) Olympiad._noblesRank.put(charId, 2); else if (tmpPlace.get(charId) <= rank3) Olympiad._noblesRank.put(charId, 3); else if (tmpPlace.get(charId) <= rank4) Olympiad._noblesRank.put(charId, 4); else Olympiad._noblesRank.put(charId, 5); } /** * Сбрасывает информацию о ноблесах, сохраняя очки за предыдущий период */ public static synchronized void cleanupNobles() { _log.info("Olympiad: Calculating last period..."); Connection con = null; PreparedStatement statement = null; try { con = DatabaseFactory.getInstance().getConnection(); statement = con.prepareStatement(OlympiadNobleDAO.OLYMPIAD_CALCULATE_LAST_PERIOD); statement.setInt(1, Config.OLYMPIAD_BATTLES_FOR_REWARD); statement.execute(); DbUtils.close(statement); statement = con.prepareStatement(OlympiadNobleDAO.OLYMPIAD_CLEANUP_NOBLES); statement.setInt(1, Config.OLYMPIAD_POINTS_DEFAULT); statement.execute(); } catch(Exception e) { _log.error("Olympiad System: Couldn't calculate last period!", e); } finally { DbUtils.closeQuietly(con, statement); } for (Integer nobleId : Olympiad._nobles.keySet()) { StatsSet nobleInfo = Olympiad._nobles.get(nobleId); int points = nobleInfo.getInteger(Olympiad.POINTS); int compDone = nobleInfo.getInteger(Olympiad.COMP_DONE); nobleInfo.set(Olympiad.POINTS, Config.OLYMPIAD_POINTS_DEFAULT); if (compDone >= Config.OLYMPIAD_BATTLES_FOR_REWARD) { nobleInfo.set(Olympiad.POINTS_PAST, points); nobleInfo.set(Olympiad.POINTS_PAST_STATIC, points); } else { nobleInfo.set(Olympiad.POINTS_PAST, 0); nobleInfo.set(Olympiad.POINTS_PAST_STATIC, 0); } nobleInfo.set(Olympiad.COMP_DONE, 0); nobleInfo.set(Olympiad.COMP_WIN, 0); nobleInfo.set(Olympiad.COMP_LOOSE, 0); nobleInfo.set(Olympiad.GAME_CLASSES_COUNT, 0); nobleInfo.set(Olympiad.GAME_NOCLASSES_COUNT, 0); nobleInfo.set(Olympiad.GAME_TEAM_COUNT, 0); } } public static List<String> getClassLeaderBoard(int classId) { List<String> names = new ArrayList<String>(); try (Connection con = DatabaseFactory.getInstance().getConnection(); PreparedStatement statement = con.prepareStatement(classId == 132 ? OlympiadNobleDAO.GET_EACH_PAST_CLASS_LEADER_SOULHOUND : OlympiadNobleDAO.GET_EACH_PAST_CLASS_LEADER)) { statement.setInt(1, classId); try (ResultSet rset = statement.executeQuery()) { while (rset.next()) names.add(rset.getString(Olympiad.CHAR_NAME)); } } catch (SQLException e) { _log.error("Olympiad System: Couldn't get old noble ranking from db!", e); } return names; } /** * Returning List of Character Names * Names are ordered DESC by olympiad_points(current Period) * Name is taken into consideration only if base class = classId * @param classId Id of the Base Class we is looking for * @return Names of the best players */ public static List<String> getClassLeaderBoardCurrent(int classId) { List<String> names = new ArrayList<String>(); try (Connection con = DatabaseFactory.getInstance().getConnection(); PreparedStatement statement = con.prepareStatement(classId == 132 ? OlympiadNobleDAO.GET_EACH_CURRENT_CLASS_LEADER_SOULHOUND : OlympiadNobleDAO.GET_EACH_CURRENT_CLASS_LEADER)) { statement.setInt(1, classId); statement.setInt(2, Config.OLYMPIAD_BATTLES_FOR_REWARD); try (ResultSet rset = statement.executeQuery()) { while (rset.next()) names.add(rset.getString(Olympiad.CHAR_NAME)); } } catch (SQLException e) { _log.error("Olympiad System: Couldn't get current noble ranking from db!", e); } return names; } public static synchronized void sortHerosToBe() { if (Olympiad._period != 1) return; Olympiad._heroesToBe = new ArrayList<StatsSet>(); Connection con = null; PreparedStatement statement = null; ResultSet rset = null; try { con = DatabaseFactory.getInstance().getConnection(); StatsSet hero; for (ClassId id : ClassId.VALUES) { if (id.getId() == 133) continue; if (id.level() == 3) { statement = con.prepareStatement(id.getId() == 132 ? OlympiadNobleDAO.OLYMPIAD_GET_HEROS_SOULHOUND : OlympiadNobleDAO.OLYMPIAD_GET_HEROS); statement.setInt(1, id.getId()); statement.setInt(2, Config.OLYMPIAD_BATTLES_FOR_REWARD); rset = statement.executeQuery(); if (rset.next()) { hero = new StatsSet(); hero.set(Olympiad.CLASS_ID, id.getId()); hero.set(Olympiad.CHAR_ID, rset.getInt(Olympiad.CHAR_ID)); hero.set(Olympiad.CHAR_NAME, rset.getString(Olympiad.CHAR_NAME)); Olympiad._heroesToBe.add(hero); } DbUtils.close(statement, rset); } } } catch(Exception e) { _log.error("Olympiad System: Couldnt heros from db!", e); } finally { DbUtils.closeQuietly(con, statement, rset); } } public static synchronized void saveNobleData(int nobleId) { OlympiadNobleDAO.getInstance().replace(nobleId); } public static synchronized void saveNobleData() { if (Olympiad._nobles == null) return; for (Integer nobleId : Olympiad._nobles.keySet()) saveNobleData(nobleId); } public static synchronized void setNewOlympiadEnd() { Announcements.getInstance().announceToAll(new SystemMessage(SystemMsg.ROUND_S1_OF_THE_GRAND_OLYMPIAD_GAMES_HAS_STARTED).addNumber(Olympiad._currentCycle)); Calendar currentTime = Calendar.getInstance(); currentTime.set(Calendar.DAY_OF_WEEK, Calendar.SUNDAY); currentTime.set(Calendar.AM_PM, Calendar.AM); currentTime.set(Calendar.HOUR, 12); currentTime.set(Calendar.MINUTE, 0); currentTime.set(Calendar.SECOND, 0); Olympiad._olympiadEnd = currentTime.getTimeInMillis(); currentTime.add(Calendar.WEEK_OF_MONTH, 1); Calendar nextChange = Calendar.getInstance(); Olympiad._nextWeeklyChange = nextChange.getTimeInMillis() + Config.ALT_OLY_WPERIOD; Olympiad._isOlympiadEnd = false; Announcements.getInstance().announceToAll(new SystemMessage2(SystemMsg.OLYMPIAD_PERIOD_S1_HAS_STARTED).addInteger(Olympiad._currentCycle)); } public static void save() { saveNobleData(); ServerVariables.set("Olympiad_CurrentCycle", Olympiad._currentCycle); ServerVariables.set("Olympiad_Period", Olympiad._period); ServerVariables.set("Olympiad_End", Olympiad._olympiadEnd); ServerVariables.set("Olympiad_ValdationEnd", Olympiad._validationEnd); ServerVariables.set("Olympiad_NextWeeklyChange", Olympiad._nextWeeklyChange); } } Thats the whole archive i miss somethink?
  20. Im keep having this same problem even when i copy the period end time into weekly end time record in database and "synchronize" them
  21. Now it will give you weekly points when a new season start im right?
  22. Well i think its working now at least it say "period ends in 3 days(sunday)". What about the Weekly Change times , it says (6 days and 23 hours) Should i change the default value # Olympiad Weekly Period, Default: 604800000 AltOlyWPeriod = 604800000 To AltOlyWPeriod = 151200000 ?
  23. Yes was a encoding problem. About the code i added a little part of it only this part currentTime.set(Calendar.DAY_OF_WEEK, Calendar.SUNDAY); currentTime.set(Calendar.AM_PM, Calendar.AM); currentTime.set(Calendar.HOUR, 12); currentTime.set(Calendar.MINUTE, 0); currentTime.set(Calendar.SECOND, 0); if (currentTime.getTimeInMillis() < System.currentTimeMillis()) currentTime.add(Calendar.WEEK_OF_MONTH, 1); the rest of the code you give me it this one (Was giving errors "Cannot Resolv Variables" _olympiadEnd = currentTime.getTimeInMillis(); Calendar nextChange = Calendar.getInstance(); _nextWeeklyChange = nextChange.getTimeInMillis() + WEEKLY_PERIOD; scheduleWeeklyChange(); } Btw i compiled it sucessfull with the little code part ,run the sql update on server_variables table. But when i turn on the server on the olympiad charge it start to spam with a olympiad error
  24. This is the errors that give me when i try to compile ,i copy the code as you give me. https://pastebin.com/HJbmBdSc And this its the file withe the code you give me. https://pastebin.com/1spBd0Si
×
×
  • Create New...