Jump to content
  • 0

Clan War Zone L2Jfrozen Problem With Adopt To L2Jserver


Question

5 answers to this question

Recommended Posts

  • 0
Posted

You could change the L2Character patch with a simple

 public static final int ZONE_PVP = 1;
    public static final int ZONE_PEACE = 2;
    public static final int ZONE_SIEGE = 4;
    public static final int ZONE_MOTHERTREE = 8;
    public static final int ZONE_CLANHALL = 16;
    public static final int ZONE_UNUSED = 32;
    public static final int ZONE_NOLANDING = 64;
    public static final int ZONE_WATER = 128;
    public static final int ZONE_JAIL = 256;
    public static final int ZONE_MONSTERTRACK = 512;
    public static final int ZONE_SWAMP = 1024;
    public static final int ZONE_NOSUMMONFRIEND = 2048;
    public static final int ZONE_OLY = 4096;
+   public static final int ZONE_CLANWAR = 4097;
add it in zonedata

 else if(zoneType.equals("SwampZone"))
                                {
                                    temp = new L2SwampZone(zoneId);
                                }
 else if(zoneType.equals("ClanWarZone"))
                                {
                                    temp = new L2ClanWarZone(zoneId);
                                }
and then in the L2PcInstance check, instead of isinsideclanwarzone() make isInsideZone(ZONE_CLANWAR)

and inside the zone change ((L2PcInstance) character).setIsInsideClanwarZone(true); with ((L2PcInstance) character).setIsInsideZone(ZONE_CLANWAR, true);

  • 0
Posted (edited)

O.o the position doesn't matter, just make sure that it's inside the main class and outside any method{}

Edited by ^Wyatt
  • 0
Posted (edited)

O.o the position doesn't matter, just make sure that it's inside the main class and outside any method{}

This :troll: Example, before the last } :P

Edited by SweeTs
  • 0
Posted (edited)

O.o the position doesn't matter, just make sure that it's inside the main class and outside any method{}

 

Thank you guys :)

 

But i cant find solution for ZoneData is the same as your MultifuctionZone? i have to add it in ZoneID.java? 

for exmpl CLAN_WAR_ZONE(24); ?

 

Edit: when i add this 

 

Index: java/com/l2jserver/gameserver/model/actor/instance/L2PcInstance.java
===================================================================
--- java/com/l2jserver/gameserver/model/actor/instance/L2PcInstance.java
+++ java/com/l2jserver/gameserver/model/actor/instance/L2PcInstance.java
@@ -7715,6 +7716,12 @@
  if(!checkAntiFarm(targetPlayer))
  return;
  
+ if(isInsideClanwarZone() && targetPlayer.isInsideClanwarZone() && (getClan() != null) && (targetPlayer.getClan() != null) && (getClanId() != targetPlayer.getClanId()))
+ {
+ getClan().setReputationScore(getClan().getReputationScore() + 100, true);
+ sendMessage("You killed someone from an enemy clan. Your clan gets rewarded with 100 rep points!");
+ }
+ 
  // Check if it's pvp
  if(checkIfPvP(target) && targetPlayer.getPvpFlag() != 0 || isInsideZone(ZONE_PVP) && targetPlayer.isInsideZone(ZONE_PVP))
  {

i get error for isInsideClanwarZone : The method isInsideClanwarZone() is undefined for the type L2PcInstance

Edited by drgn
Guest
This topic is now closed to further replies.


  • Posts

    • Dear players, From April 19 to April 27 inc., the Bonus Start event will be active. It’s designed to help new and low-level characters get started more easily.   All characters that meet one of the following conditions: — created less than 3 days ago (regardless of level), — currently level 20 or below, — created during the event period, will receive upon login: — 10 sets of buff scrolls (phys or mage, depending on class), — 10 packs of +50% Drop/Spoil runes (2 hours each), — 10 packs of +50% Exp runes (2 hours each). Characters between level 21 and 30 will receive upon login: — 6 sets of buff scrolls, — 6 packs of +50% Drop/Spoil runes (2h each), — 6 packs of +50% Exp runes (2h each).   Event items will be removed approx. 09.05.2025 Server rates will be increased to x2.25. Take this chance to start your journey with ease or bring an old hero back into the fight — it’s the perfect time to test your strength! Open Beta Test is started!  Helper cats are waiting in towns — talk to them to receive the necessary equipment and level up your character. Siege Schedule:  - April 13 at 16:00 (GMT+2) – Innadrile Castle - April 14 at 20:00 (GMT+2) – Bandit Stronghold - April 15 at 20:00 (GMT+2) – Devastated Castle 📌 During the OBT, players who report bugs will receive CoL:   - 1 CoL for each reported staticmeshes bug (e.g., walking through textures, stairs, etc.) - 2 CoL or more for server-related issues (depending on severity) You can report bugs on the forum. The Open Beta Test will run approximately until April 15 at 23:00 (GMT+2). Your activity and feedback will help us improve the game.   Download links: Download client | Download updater 
    • begin if (user.dead) then begin delay(555); Engine.GoHome(rtCastle); print('User dead, going to castle..') end; end.  
    • Hello everyone. Long time no see. I've been trying to play L2 on my 4k monitor, however the UI is extremely small.  I checked around the internet and couldn't find a guide on how to keep the resolution high and the UI size a bit bigger. I either get small UI + full resolution (correct resolution of monitor), or normal sized UI but resolution set to full HD (which doesn't really look good on a 4k screen). Adjusting scaling on display settings doesn't change the UI just the text on L2. Does anyone know a way to increase the UI size only and keeping the screens resolution same (4k) ? I'll share a screenshot as an example, and it 's not even full screen mode. https://freeimage.host/i/3cvPVnI  
    • Hello guys. I want to know if there is a way(script or something) to make character go to castle after death in adrenaline bot
    • hahahahahahahahahahhaaahahaha
  • Topics

×
×
  • Create New...