Jump to content

DocuWin

Members
  • Posts

    19
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

About DocuWin

Profile Information

  • Current Mood
    Happy
  • Gender
    Male
  • Country
    Greece

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

DocuWin's Achievements

Contributor

Contributor (5/16)

  • Collaborator Rare
  • Dedicated Rare
  • First Post Rare
  • One Month Later Rare
  • Week One Done Rare

Recent Badges

0

Reputation

  1. @Rospys https://acis.i-live.eu/index.php?topic=10190.0 mpes edw des ta video poio katw gia na mporeseis na stiseis to acis sto pc sou
  2. @protoftw filaraki ta codes douleuoun kai sto last free rev 401?
  3. Καλησπέρα ψάχνω developer για να μου στήσει ένα σερβερ (acis) επειδή δεν είμαι γνώστης java
  4. @'Baggos' ekana auto pou mou eipes alla otan mpika sto game kai ekana create item mou lei (This item doesnt exist) to erwtima einai twra pws mporw na perasw auta ta items sto source? epidei den exw idea kai twra mathenw siga siga
  5. @andy1984 <?xml version="1.0" encoding="UTF-8"?> <list> <item id="9500" type="EtcItem" name="Star Ornament"> <set name="material" val="PAPER" /> <set name="price" val="1" /> <set name="is_stackable" val="true" /> </item> <item id="9501" type="EtcItem" name="Event Coin Lv.1"> <set name="material" val="PAPER" /> <set name="price" val="1" /> <set name="is_stackable" val="true" /> </item> <item id="9502" type="EtcItem" name="Tournament Point's Lv.1"> <set name="material" val="PAPER" /> <set name="price" val="1" /> <set name="is_stackable" val="true" /> </item> <item id="9503" type="EtcItem" name="Ticket Donate"> <set name="material" val="PAPER" /> <set name="price" val="1" /> <set name="is_stackable" val="true" /> </item> <item id="9504" type="EtcItem" name="Noblesse Status"> <set name="default_action" val="skill_reduce" /> <set name="material" val="PAPER" /> <set name="weight" val="120" /> <set name="equip_reuse_delay" val="30" /> <set name="price" val="500000" /> <set name="handler" val="NoblesItem" /> <set name="is_stackable" val="true" /> </item> </list> @splicho Can you tell me the solution because i dont know..and Im learning now slowly
  6. Hi to all DEVELOPERS i have these two errors.. can any one help me? where am i doing wrong and i have these two errors? acis pack rev(401) i passed the xml files normally.. and i passed them on the system etcitemsgrp and armorgrp [Fatal Error] :1:1: Content is not allowed in prolog. Error loading file .\data\xml\items\armors org.xml.sax.SAXParseException; systemId: file:/C:/Users/USER/Desktop/acis%20401/gameserver/./data/xml/items/armors/; lineNumber: 1; columnNumber: 1; Content is not allowed in prolog. at java.xml/com.sun.org.apache.xerces.internal.parsers.DOMParser.parse(DOMParser.java:262) at java.xml/com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderImpl.parse(DocumentBuilderImpl.java:342) at java.xml/javax.xml.parsers.DocumentBuilder.parse(DocumentBuilder.java:206) at net.sf.l2j.gameserver.data.DocumentBase.parse(DocumentBase.java:86) at net.sf.l2j.gameserver.data.DocumentItem.parse(DocumentItem.java:18) at net.sf.l2j.gameserver.data.xml.ItemData.load(ItemData.java:46) at net.sf.l2j.gameserver.data.xml.ItemData.<init>(ItemData.java:26) at net.sf.l2j.gameserver.data.xml.ItemData$SingletonHolder.<clinit>(ItemData.java:93) at net.sf.l2j.gameserver.data.xml.ItemData.getInstance(ItemData.java:88) at net.sf.l2j.gameserver.GameServer.<init>(GameServer.java:160) at net.sf.l2j.gameserver.GameServer.main(GameServer.java:115) [Fatal Error] :1:1: Content is not allowed in prolog. Error loading file .\data\xml\items\etcitems org.xml.sax.SAXParseException; systemId: file:/C:/Users/USER/Desktop/acis%20401/gameserver/./data/xml/items/etcitems/; lineNumber: 1; columnNumber: 1; Content is not allowed in prolog. at java.xml/com.sun.org.apache.xerces.internal.parsers.DOMParser.parse(DOMParser.java:262) at java.xml/com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderImpl.parse(DocumentBuilderImpl.java:342) at java.xml/javax.xml.parsers.DocumentBuilder.parse(DocumentBuilder.java:206) at net.sf.l2j.gameserver.data.DocumentBase.parse(DocumentBase.java:86) at net.sf.l2j.gameserver.data.DocumentItem.parse(DocumentItem.java:18) at net.sf.l2j.gameserver.data.xml.ItemData.load(ItemData.java:46) at net.sf.l2j.gameserver.data.xml.ItemData.<init>(ItemData.java:26) at net.sf.l2j.gameserver.data.xml.ItemData$SingletonHolder.<clinit>(ItemData.java:93) at net.sf.l2j.gameserver.data.xml.ItemData.getInstance(ItemData.java:88) at net.sf.l2j.gameserver.GameServer.<init>(GameServer.java:160) at net.sf.l2j.gameserver.GameServer.main(GameServer.java:115)
  7. @Stev0 man can you send me the system for interlude because dont work on my server
  8. @Kara * This program is free software: you can redistribute it and/or modify it under * the terms of the GNU General Public License as published by the Free Software * Foundation, either version 3 of the License, or (at your option) any later * version. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more * details. * * You should have received a copy of the GNU General Public License along with * this program. If not, see <http://www.gnu.org/licenses/>. */ package com.l2jmega.gameserver.instancemanager; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.util.Map; import java.util.concurrent.ConcurrentHashMap; import java.util.logging.Logger; import com.l2jmega.L2DatabaseFactory; /** * @author rapfersan92 */ public class RaidBossInfoManager { private static final Logger _log = Logger.getLogger(RaidBossInfoManager.class.getName()); private final Map<Integer, Long> _raidBosses; public static RaidBossInfoManager getInstance() { return SingletonHolder._instance; } protected RaidBossInfoManager() { _raidBosses = new ConcurrentHashMap<>(); load(); } public void load() { try (Connection con = L2DatabaseFactory.getInstance().getConnection()) { PreparedStatement statement; ResultSet rs; statement = con.prepareStatement("SELECT boss_id, respawn_time FROM grandboss_data UNION SELECT boss_id, respawn_time FROM raidboss_spawnlist ORDER BY boss_id"); rs = statement.executeQuery(); while (rs.next()) { int bossId = rs.getInt("boss_id"); _raidBosses.put(bossId, rs.getLong("respawn_time")); } rs.close(); statement.close(); } catch (Exception e) { _log.warning("Exception: RaidBossInfoManager load: " + e); } _log.info("RaidBossInfoManager: Loaded " + _raidBosses.size() + " instances."); } public void updateRaidBossInfo(int bossId, long respawnTime) { _raidBosses.put(bossId, respawnTime); } public long getRaidBossRespawnTime(int bossId) { return _raidBosses.get(bossId); } private static class SingletonHolder { protected static final RaidBossInfoManager _instance = new RaidBossInfoManager(); } }
  9. Hi to all developers i have this console error when i target any npc in my server (acis pack) can any one help me? Failed reading: [C] Action ; java.lang.NullPointerException at com.l2jmega.gameserver.instancemanager.RaidBossInfoManager.getRaidBossRespawnTime(RaidBossInfoManager.java:78) at com.l2jmega.gameserver.model.actor.Npc.horus(Npc.java:1983) at com.l2jmega.gameserver.model.actor.Npc.showChatWindow(Npc.java:1498) at com.l2jmega.gameserver.model.actor.Npc.showChatWindow(Npc.java:1437) at com.l2jmega.gameserver.model.actor.Npc.onAction(Npc.java:524) at com.l2jmega.gameserver.network.clientpackets.Action.runImpl(Action.java:117) at com.l2jmega.gameserver.network.clientpackets.L2GameClientPacket.run(L2GameClientPacket.java:52) at com.l2jmega.gameserver.network.L2GameClient.run(L2GameClient.java:843) at com.l2jmega.commons.concurrent.ThreadPool$TaskWrapper.run(ThreadPool.java:224) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) at java.base/java.lang.Thread.run(Thread.java:834)
  10. Kalhspera stin omada ti malakiea ekana kai mou emfanizei auto to error sto game server console? otan pataw panw se ena (opoio dipote) npc p.x sto buffer gia na mou emfanisei ta buff menu mou petaei auto to error sto console kapoios na me voithisei? (L2 Acis PACK) Failed reading: [C] Action ; java.lang.NullPointerException at com.l2jmega.gameserver.instancemanager.RaidBossInfoManager.getRaidBossRespawnTime(RaidBossInfoManager.java:78) at com.l2jmega.gameserver.model.actor.Npc.horus(Npc.java:1983) at com.l2jmega.gameserver.model.actor.Npc.showChatWindow(Npc.java:1498) at com.l2jmega.gameserver.model.actor.Npc.showChatWindow(Npc.java:1437) at com.l2jmega.gameserver.model.actor.Npc.onAction(Npc.java:524) at com.l2jmega.gameserver.network.clientpackets.Action.runImpl(Action.java:117) at com.l2jmega.gameserver.network.clientpackets.L2GameClientPacket.run(L2GameClientPacket.java:52) at com.l2jmega.gameserver.network.L2GameClient.run(L2GameClient.java:843) at com.l2jmega.commons.concurrent.ThreadPool$TaskWrapper.run(ThreadPool.java:224) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) at java.base/java.lang.Thread.run(Thread.java:834)
  11. @xRelic se euxaristw poli filaraki.. ara afou les oti exei arketa themata as dw allo pack kalitera gia na asxolithw.. se euxaristw kai pali
  12. FROZEN PACK Kalispera stin omada tha ithela na kanw tin eksis erwtisi pws mporw na valaw sta raid boss na vgenoun singekrimenes meres pou thelw egw? P.x pws mporw na kanw to Baium na vgenei kathe Triti Pempti stis 20:00 me 21:00? H to zaken na vgenei kathe Deutera Tetarti Paraskeuh 19:00 me 20:00? euxaristw apo twra opoios voithisei
  13. because i know the best of these 3 packs it's the acis.. because i have the problem and i dont know anything about java codes. and because frozen has almost all copied paste and because the updates have stoped. my question is because i believe and its my opinion hellas and mobius will be almost a copy paste.. in witch 2 packs i try to open live server Hellas or @Mobius?
×
×
  • Create New...