
MoNsT3ReN4RgY
Members-
Posts
60 -
Credits
0 -
Joined
-
Last visited
-
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Everything posted by MoNsT3ReN4RgY
-
Help Help with this please.
MoNsT3ReN4RgY replied to MoNsT3ReN4RgY's question in Request Server Development Help [L2J]
{ } if (player.isInsideZone(ZoneId.PVP)) { if (getMemberCount() < 5) { getPartyMembers().forEach(s -> s.teleToLocation(MapRegionTable.TeleportWhereType.Town)); } } } i added this one under this part of code on L2Party.java /** * Remove player from party Overloaded method that takes player's name as parameter * @param name */ public void removePartyMember(final String name) { final L2PcInstance player = getPlayerByName(name); if (player != null) removePartyMember(player); but i am getting an error on (ZoneId.PVP) -
Help Help with this please.
MoNsT3ReN4RgY posted a question in Request Server Development Help [L2J]
Hello all..i have created a party zone for 5+ players...and i set a check if a player leaves pt or die and pressed go to village and the party goes <5 then all going back to spawn. but when a player leaves party he isn't teleported back to Town.. party also stay inside party zone with less than 5 players.. only if the player restart will be teleported back to town.any suggestions>? https://pastebin.com/THVrji14 -
Request Party zone check
MoNsT3ReN4RgY replied to MoNsT3ReN4RgY's question in Request Server Development Help [L2J]
how much will it cost to do it? i will pay you for it. for interlude l2jfrozen -
Help PeaceZone problem
MoNsT3ReN4RgY replied to MoNsT3ReN4RgY's question in Request Server Development Help [L2J]
Solved. -
Help προβλημα eclipse
MoNsT3ReN4RgY replied to l22expert's question in Request Server Development Help [Greek]
Καλημερα κι απο μενα.! τι ακριβως version και tools εχεις εγκατεστημενα για το eclipse ? αν θελεις στειλε pm ισως μπορω να σε βοηθησω. -
Help event monument statuet problem
MoNsT3ReN4RgY posted a question in Request Server Development Help [L2J]
Hello all ..i have add this code for 24hour top pvp/pk monument statuet.. no errors on java side..no error on sql everything is ok. but the npcs appears without armor weapon name of the top pvp/pk player. here is the Screenshot https://files.fm/u/phy5ewyd -
Party zone add check
MoNsT3ReN4RgY replied to MoNsT3ReN4RgY's question in Request Server Development Help [L2J]
i'm getting these errors tried to chance getMembers() to GetPartyMembers() ..but i am getting errors on teleportwheretype.town and zoneid.pvp -
Help party gatekeeper problem
MoNsT3ReN4RgY replied to MoNsT3ReN4RgY's question in Request Server Development Help [L2J]
it gives me error on partyteleportinstance.java if i dont edit them...i deleted the part of partyteleportinstance.java that shows inside party zone how many party or players are and it solved.! -
Help party gatekeeper problem
MoNsT3ReN4RgY replied to MoNsT3ReN4RgY's question in Request Server Development Help [L2J]
i removed the code from my source and everything working fine...i insert it again and the problem came back.. -
Help party gatekeeper problem
MoNsT3ReN4RgY posted a question in Request Server Development Help [L2J]
hello all..i have this party gatekeeper code https://pastebin.com/kQ86TWmB but when i am paste the code on my l2jfrozen it makes zones.htm not to work..you can hit other players when you are intown ..... the problem comes from that part of code....if someone can fix the problem it would be appreciated!! thanks in advance. --- head-src/com/l2jfrozen/gameserver/model/zone/L2ZoneManager.java (revision 1132) +++ head-src/com/l2jfrozen/gameserver/model/zone/L2ZoneManager.java (working copy) @@ -34,7 +34,7 @@ public class L2ZoneManager { private final Logger LOGGER = Logger.getLogger(L2ZoneManager.class); - private final FastList<L2ZoneType> _zones; + private static FastList<L2ZoneType> _zones; /** * The Constructor creates an initial zone list use registerNewZone() / unregisterZone() to change the zone list @@ -112,7 +112,7 @@ /** * @return */ - public FastList<L2ZoneType> getZones() + public static FastList<L2ZoneType> getZones() { return _zones; } index: head-src/com/l2jfrozen/gameserver/model/L2WorldRegion.java =================================================================== public boolean checkEffectRangeInsidePeaceZone(final L2Skill skill, final int x, final int y, final int z) { if (_zoneManager != null) { final int range = skill.getEffectRange(); final int up = y + range; final int down = y - range; final int left = x + range; final int right = x - range; -for (final L2ZoneType e : _zoneManager.getZones()) +for (final L2ZoneType e : L2ZoneManager.getZones()) -
Help Problem Player hit Player in town!
MoNsT3ReN4RgY replied to MoNsT3ReN4RgY's question in Request Server Development Help [L2J]
solved you can lock it -
Help Problem Player hit Player in town!
MoNsT3ReN4RgY replied to MoNsT3ReN4RgY's question in Request Server Development Help [L2J]
no..single player against single player -
Help Problem Player hit Player in town!
MoNsT3ReN4RgY posted a question in Request Server Development Help [L2J]
I have a problem with peacezone..i have set World Peace by settings but not working..player can hit player inside town witch is peacezone. help..! i am using l2jfrozen pack. -
Help PeaceZone problem
MoNsT3ReN4RgY replied to MoNsT3ReN4RgY's question in Request Server Development Help [L2J]
i just noticed that you can hit players even on towns.. # Configure zones # 0 = World Peace # 1 = PVP sieges in # 2 = PVP everywhere ZoneTown = 0 i have zonetown = 0 it supposed would be world peace..whats going on :/ help ! -
Help PeaceZone problem
MoNsT3ReN4RgY replied to MoNsT3ReN4RgY's question in Request Server Development Help [L2J]
i didnt edit those Z ..it's default on zones.htm i tried after this to edit them but nothing happened.. -
hello all..i am searching for party zone code (l2jfrozen) .. when the party of 5+ players teleport inside party zone and someone of them dies and press go to village and party goes <5 then teleport them back to spawn unless they revived him..btw i have party teleport npc that allows you to join if you have more than 5 players on pt(i dont know if that help).
-
Help PeaceZone problem
MoNsT3ReN4RgY replied to MoNsT3ReN4RgY's question in Request Server Development Help [L2J]
i tried this one <!-- Giran Harbor --> <zone id='99999' type='FishingZone' shape='NPoly' minZ='-3788' maxZ='-3770'> </zone> to <!-- Giran Harbor --> <zone id='99999' type='PeaceZone' shape='NPoly' minZ='-3788' maxZ='-3770'> </zone> and this one <zone id='99999' type='Town' shape="NPoly" minZ="-3788" maxZ="-3770"> <stat name='name' val='Town of Oren'/> <stat name='townId' val='10'/> <stat name='redirectTownId' val='11'/> <stat name='taxById' val='4'/> <spawn X='80853' Y='54653' Z='-1524'/> <spawn X='82376' Y='53750' Z='-1522'/> <spawn X='82264' Y='55667' Z='-1551'/> <spawn X='80152' Y='55745' Z='-1586'/> <spawn X='80432' Y='53779' Z='-1586'/> </zone> with same id that i added on zone_vertices on database. -
Help PeaceZone problem
MoNsT3ReN4RgY replied to MoNsT3ReN4RgY's question in Request Server Development Help [L2J]
like a town....not be able to hit players..only mobs -
Hello all..i tried everything about making a single zone Peace zone (Giran Harbor witch is Fishingzone at this moment) and Bandit StrongHold but i failed.. i tried 2-3 tutorials i found on maxcheaters but didn't work at the end..if anyone can help me please.
-
Help how to set a place as party zone
MoNsT3ReN4RgY replied to MoNsT3ReN4RgY's question in Request Server Development Help [L2J]
ofc.. here it is and sorry i didnt do it earlier. https://pastebin.com/18v5R5sF -
Help how to set a place as party zone
MoNsT3ReN4RgY replied to MoNsT3ReN4RgY's question in Request Server Development Help [L2J]
hello all..i found this code for donatorzone..is it possible to work for my situation? https://www.l2jbrasil.com/topic/134182-l2jfrozen-zonas-protegidas-isnewbie-ishero-isdonator/ -
Help how to set a place as party zone
MoNsT3ReN4RgY posted a question in Request Server Development Help [L2J]
Hello all..i was wondering how i can set a place as party zone..(i have multifunction code also may i can do it from there? and how.) also if the player isn't in a party of 5+ players he will not be aible to walk in party area that i will set for... sorry for bad english.. -
Request Party zone check
MoNsT3ReN4RgY replied to MoNsT3ReN4RgY's question in Request Server Development Help [L2J]
Hello Tryskell..i am newbe on java codes and i dont know much ... i cant do the party check i asked..if you could help me somehow i would apreciate it.. -
Hello MaxCheaters..i am new on java codes and i was wondering if it is possible to write a code when a party of 5+ players get into the party zone and 1-2 of them die (dont res them and they press to village) and the party get lower than ex. 5 players to teleport them all back to teleport spot.. thanks in advance !
-
Hello MaxCheaters...i added party teleporter on my pack but i need the party zone check..i mean when the party get lower than 5 members inside party zone all the players should be teleported back to gatekeeper..i dont know if it counts but i have the multifunction zone added allready