
LoVe+
Members-
Posts
133 -
Credits
0 -
Joined
-
Last visited
-
Days Won
1 -
Feedback
0%
Everything posted by LoVe+
-
Help Having more than 1 Masterwork option on 1 item
LoVe+ replied to Kyboi's question in Request Server Development Help [L2J]
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 -
Help Having more than 1 Masterwork option on 1 item
LoVe+ replied to Kyboi's question in Request Server Development Help [L2J]
<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())); -
Help Client Map Status
LoVe+ replied to ZaKaeDaa's question in Request Server Development Help [L2J]
RequestShowMiniMap.java , maybe this can help you idk -
maybe via msn chat any chance microphone?
-
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
-
Discussion Interlude locked arena
LoVe+ replied to 'Baggos''s topic in Server Development Discussion [L2J]
you mean under rune castle ? i dont think is arena but is smth -
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 ?
-
Code Monster Race - The retail event of Lineage II
LoVe+ replied to 'Baggos''s topic in Server Shares & Files [L2J]
TOMMOROW EVERY TWITCH STREAM BR SERVER LIVE STREAM RACES GG THX -
Help Create a Rune of Drop
LoVe+ replied to barao45's question in Request Server Development Help [L2J]
so you want an item to make that ? -
Help High casting speed wont show skill animation
LoVe+ replied to dmZEros's question in Request Server Development Help [L2J]
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 -
Help Help with interface bypass(like: Iordanov, Celestine etc..)
LoVe+ replied to Neonzed's topic in Request Botting [English]
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. -
you forgot to post website addres
-
Help MariaDb No connection
LoVe+ replied to wongerlt's question in Request Server Development Help [L2J]
so you db is up , ls is still online without any problem but your gs is having trouble connecting to db sometimes ? -
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
-
i like your ambition wish you luck
-
Help L2J Attack Delay
LoVe+ replied to MoetsukiDansei's question in Request Server Development Help [L2J]
THIS:: I will never use anything he's touched again. DAAMN -
Discussion Stop Attacking SkillUse
LoVe+ replied to barao45's topic in Server Development Discussion [L2J]
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. -
Discussion Stop Attacking SkillUse
LoVe+ replied to barao45's topic in Server Development Discussion [L2J]
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 ? -
Help set Online server stuck server selection
LoVe+ replied to TexasJunior's question in Request Server Development Help [L2J]
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 -
Request PROBLEM WITH CRYSTAL ICON
LoVe+ replied to SpiritOfDarkness's topic in Request Support [English]
-
Request PROBLEM WITH CRYSTAL ICON
LoVe+ replied to SpiritOfDarkness's topic in Request Support [English]
you need to edit armorgrp , check grade row . -
Help how can i change the distance between monster and player?
LoVe+ replied to Eddyyy's topic in Request Support [English]
sry but i know nothing about ue2003 , used it max 4-5 times for easy tasks -
Help how can i change the distance between monster and player?
LoVe+ replied to Eddyyy's topic in Request Support [English]
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. -
Help Character Killing Monument
LoVe+ replied to andy1984's question in Request Server Development Help [L2J]
+ 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 -
WTS XMAS Pack: Trees, Weapons, NCPs, Suits, Mobs
LoVe+ replied to NevesOma's topic in Marketplace [L2Packs & Files]
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?