Jump to content

LoVe+

Members
  • Posts

    133
  • Credits

  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    0%

Everything posted by LoVe+

  1. yep .. now wonder how it worked before adding rarity2 even on production there is not int value .. <production id="Vesper Helmet" count="1" /> and it parse int else if ("production".equalsIgnoreCase(c.getNodeName())) { set.set("itemId", Integer.parseInt(c.getAttributes().getNamedItem("id").getNodeValue())); .... } this is broken in all possible corner
  2. <productionRare2 id="Custom Vesper Helmet Foundation" count="1" rarity="4" /> try like this <productionRare2 id2="Custom Vesper Helmet Foundation" count="1" rarity2="4" /> how i know should be like this you ask ? did you do the java work yourself ? else if ("productionRare2".equalsIgnoreCase(c.getNodeName())) { set.set("rareItemId2", Integer.parseInt(c.getAttributes().getNamedItem("id2").getNodeValue())); set.set("rareCount", Integer.parseInt(c.getAttributes().getNamedItem("count").getNodeValue())); set.set("rarity2", Integer.parseInt(c.getAttributes().getNamedItem("rarity2").getNodeValue()));
  3. RequestShowMiniMap.java , maybe this can help you idk
  4. maybe via msn chat any chance microphone?
  5. About ChatGPT .. i had a conversation with the thing and i asked him if i can connect hes api to my l2j project , and maybe if he use all packets to move etc he could join me raids , the thing said he would apreciate that but is difficult but not imposible .. jajaja he wanna play with us
  6. you mean under rune castle ? i dont think is arena but is smth
  7. Hello , did anyone ever worked with some kind of system that allow players use microphone to speak in game ? I mean , java work maybe i can handle making chat over radius etc but can someone that know client edit tell me if there is something in the client about this thing ? thank you i would ask chat gpt but i need a client dev here maybe ?
  8. TOMMOROW EVERY TWITCH STREAM BR SERVER LIVE STREAM RACES GG THX
  9. so you want an item to make that ?
  10. i had same issue but with casting speed like 2000 , and then i saw that without soulshots it was working fine , so you can change multiplier of soulshots that affects cast speed tweek it until you make it
  11. man , so lets say you change the paths but client loads same files from different directory , where is difference ? why you should not get same error.
  12. LoVe+

    classic L2Xena

    you forgot to post website addres
  13. so you db is up , ls is still online without any problem but your gs is having trouble connecting to db sometimes ?
  14. I just downloaded game + patch the work that has been done here is just wow , gg nice skills staff team , i think this can be maybe the best server from all time in a point of view , the point of development dedication and time spent for work and no bullshit for real.. very sophisticated very good user interface , pictures and everything... this is what passion looks like. ggwp!! , in the other hand your timing is very bad almost sad to say this but i feel like this was all in vain (if you learn trough development progress is ok tho , you just achieved some new skills gg) is just bad timing the game is dead , is pay for play time , not pay 2 win.. anyway , nice server , too bad there is no l2 community to play it. if it was 2012 , you would be rich now buddy... l2j is like bitcoin
  15. i like your ambition wish you luck
  16. THIS:: I will never use anything he's touched again. DAAMN
  17. so in other words you want a player to start attacking after using a skill ? but that can't be good for mage class .. or you want a player that is already hitting something , and then use a skill after cast is finished to return on last action that was hitting target ? i think i can help you , i remember like a year ago i managed to make a lets say archer that is moving somewhere to cast rapid shot / dash and without any click to continue hes movement to location that was going to before casting started.
  18. why moving should be broken after cast ? imagine you are a th and run away from something and you click somewhere press f2 dash and run , why to broke running ?
  19. try downloading some other system from other server and edit l2.ini only , maybe your system files are problem idk you can give a shot
  20. you need to edit armorgrp , check grade row .
  21. sry but i know nothing about ue2003 , used it max 4-5 times for easy tasks
  22. final L2Character target = getAttackTarget(); if (target != null) { if (target.isMoving()) { range -= 100; } // moveToPawn(target, Math.max(range, 5)); -- delete the "//" "//" if is if front of a code line , the compiler wont use that line in your code. so you can try with movetopawn and it should work normal. moveTo(target.getLocation()); --- delete this line at all } } =============================================== final L2Character target = getAttackTarget(); if (target != null) { if (target.isMoving()) { range -= 100; } moveTo(target.getLocation()); if (!this.isInsideRadius(worldPosition.getX(), worldPosition.getY(), (int) (10+ target.getCollisionRadius()), false)) { int x = target.getX(); int y = target.getY(); double dx = worldPosition.getX() - x; double dy = worldPosition.getY() - y; double dist = Math.sqrt(dx * dx + dy * dy); double sin = dy / dist; double cos = dx / dist; dist -= offset - 5; x += (int) (dist * cos); y += (int) (dist * sin); moveTo(x, y, worldPosition.getZ()); } } } try this maybe is bullshit maybe works , you can check how a raidboss and minions not colide into eachother and addapt or maybe just use movetopawn best but probably someone added "//" bcs he know smth we don't.
  23. + private void broadcastPvPMorphUpdate(L2PcPolymorph npc, CharSelectSlot winnerPvPKillsInfo) + { + if (winnerPvPKillsInfo == null) + { + npc.setPolymorphInfo(null); + return; + } + npc.setVisibleTitle(Config.CKM_PVP_NPC_TITLE.replaceAll("%kills%", String.valueOf(_winnerPvPKillsCount))); + npc.setTitleColor(Config.CKM_PVP_NPC_TITLE_COLOR); + npc.setNameColor(Config.CKM_PVP_NPC_NAME_COLOR); + npc.setPolymorphInfo(winnerPvPKillsInfo); + npc.broadcastPacket(new SocialAction(npc, 16));' ++ npc.setHeading(VALUE) + } + + private void broadcastPKMorphUpdate(L2PcPolymorph npc, CharSelectSlot winnerPKKillsInfo) + { + if (winnerPKKillsInfo == null) + { + npc.setPolymorphInfo(null); + return; + } + npc.setVisibleTitle(Config.CKM_PK_NPC_TITLE.replaceAll("%kills%", String.valueOf(_winnerPKKillsCount))); + npc.setTitleColor(Config.CKM_PK_NPC_TITLE_COLOR); + npc.setNameColor(Config.CKM_PK_NPC_NAME_COLOR); + npc.setPolymorphInfo(winnerPKKillsInfo); + npc.broadcastPacket(new SocialAction(npc, 16)); ++ npc.setHeading(VALUE) + } + + public void broadcastMorphUpdate() + { + final CharSelectSlot winnerPvPKillsInfo = getWinnerPvPKillsInfo(); + for (L2PcPolymorph npc : pvpMorphListeners) + { + broadcastPvPMorphUpdate(npc, winnerPvPKillsInfo); npc.setHeading(VALUE) + } + + final CharSelectSlot winnerPKKillsInfo = getWinnerPKKillsInfo(); + for (L2PcPolymorph npc : pkMorphListeners) + { + broadcastPKMorphUpdate(npc, winnerPKKillsInfo); npc.setHeading(VALUE) + } + } try this
  24. if he is in right mood he will accept you as you are , try maybe you lucky neves. btw nice work , maybe some shares for xmas?
×
×
  • Create New...