Jump to content

Recommended Posts

Posted

also when i have karma (i added from admin panel) and kill a player my pvps rise but not pk (in alt+t)

plus+

pks not increasing only pvps

and i cant take karma never red never gets karma points

Posted

its work, maybe you have not correctly implemented path?

i think is all correct no errors in java i have debug mode on but not lucky ok if is working i will search more thnx

  • 2 weeks later...
Posted

Updated to v3.0.2.

 

1. Fixed some connections problems.

2. About Karma, problem exists when Killer kill(pk) Victim in restricted zone. (I think).

3. Try to describe situation when the problem happened:

  - Place (you can use /loc i game), zone_id (if possible).

  - Flag status (killer is flagged, have karma, victim is flagged, have karma).

  - Attach config file.

It will help me to find bug. ;)

 

Posted

Nice Share btw!!

Really like this idea/system.its intresting and new...

I test 3.0.1 version on H5 and dont have problem with making karma or karma count...

but i found some problems (maybe) :

1.on/off system not working (its always on and cant be disable)

2.If CPS system is on,when u make pvp kill in alt+T(where is pvp/pk stat) it count how many times u kill this char (if you kill player 2 times in pvp stat will count 2,if you kill another char/player for 34 time it will change from 2 to 34) and real pvp count is lost...(but really i dont know,maybe this is the idea)

 

restricted zone arena works fine,soon i will tested in other zones...

 

Posted

Patch not compatibile with UNSTABLE H5 l2j, because they changes Zone identyfications.

Sorry for my last post but i didnt notice that,and i use your system on unstable h5 and maybe i mislead you....But even like that system is unique and with some configs it can be use well...thank you!!

  • 2 weeks later...
Posted

error in gameserver console

 

and in game get reward everytime

 

com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Mixing of GROUP colum
ns (MIN(),MAX(),COUNT(),...) with no GROUP columns is illegal if there is no GRO
UP BY clause
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)

        at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)

        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Sou
rce)
        at java.lang.reflect.Constructor.newInstance(Unknown Source)
        at com.mysql.jdbc.Util.handleNewInstance(Util.java:411)
        at com.mysql.jdbc.Util.getInstance(Util.java:386)
        at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1053)
        at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:4096)
        at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:4028)
        at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2490)
        at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2651)
        at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2734)
        at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.ja
va:2155)
        at com.mysql.jdbc.PreparedStatement.executeQuery(PreparedStatement.java:
2322)
        at com.mchange.v2.c3p0.impl.NewProxyPreparedStatement.executeQuery(NewPr
oxyPreparedStatement.java:108)
        at com.l2jserver.gameserver.custom.pvpsystem.CustomPvpSystemRankPointsRe
ward.getRankPointsRewardToInventory(CustomPvpSystemRankPointsReward.java:102)
        at com.l2jserver.gameserver.network.clientpackets.RequestBypassToServer.
runImpl(RequestBypassToServer.java:365)
        at com.l2jserver.gameserver.network.clientpackets.L2GameClientPacket.run
(L2GameClientPacket.java:66)
        at com.l2jserver.gameserver.network.L2GameClient.run(L2GameClient.java:1
088)
        at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
        at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
        at java.lang.Thread.run(Unknown Source)

Posted

1. I understand only Polish or english.

2. Patch not compatibile with UNSTABLE H5 l2j, because they changes Zone identyfications.

 

It checks for Zones only in CustomPvPSystem.java and CustomPvPDeathMgr.java? Cause I want to remove it totally since I don't use it and I want to use the system anyway^^

Posted

It checks for Zones only in CustomPvPSystem.java and CustomPvPDeathMgr.java? Cause I want to remove it totally since I don't use it and I want to use the system anyway^^

you can also just compile a STABLE version and "leach" the way or reading the zone id's ! That will be a temp solution to your prob
Guest
This topic is now closed to further replies.



  • Posts

    • So dont plat that waste time&money server.   GM promises pie in the sky, but does nothing. It's all about money, money, money. And wipe.   SCAM server!
    • I'm looking for someone to remove GameGuard from a game that uses XTRAP. The game no longer uses XTRAP. I have a game server. But the client is kicked from the game after a few minutes of logging in. If I try to remove XTRAP (just by deleting it), the game opens and closes quickly.   Send me a PM. The game is Audition, a dance game.
    • 🎉 L2Dead StuckSub - GRAND OPENING 14 February 2026🎉 After beta, testing, mistakes, laughs and a lot of PvP, the moment has finally come. L2Dead StuckSub is officially opening its gates on 14 February 2026.   ⚔️What to expect: ✦Main Class +6 Stuck Sub system ✦Balanced PvP & custom party farm areas ✦Custom events, bosses and strong rewards ✦Competitive clan scene with castle rewards   📌Until the opening: ✦Create your clans and register them in the Clan-Register channel ✦Invite your friends / old parties / CPs ✦Stay tuned for more information (rates, events, siege times, etc.)   Get your setups ready, prepare your macros and your Discord/voice. On 14 February 2026 20:00 GMT+2, we write the first chapter of L2Dead together. 🔥 https://www.l2dead.com/ https://discord.gg/TGnATuZmdt
    • Here’s the **clean, L2jAcis-style way** to make **Auto Loot work ONLY for Premium players** on **Interlude**.   I’ll give you **two options** — pick what fits your server philosophy.   ---   ## ✅ OPTION 1 (BEST PRACTICE): Premium-Only Auto Loot (Code-based)   ### 🔹 Step 1: Add config option   **`config/Premium.properties`**   ```properties # Enable auto loot only for premium players PremiumAutoLoot = True ```   ---   ### 🔹 Step 2: Read config   **`Config.java`**   ```java public static boolean PREMIUM_AUTO_LOOT; ```   Load it:   ```java PREMIUM_AUTO_LOOT = Premium.getProperty("PremiumAutoLoot", false); ```   ---   ### 🔹 Step 3: Modify drop handling   **File:**   ``` net.sf.l2j.gameserver.model.actor.instance.L2MonsterInstance ```   Find **dropItems()** or **doItemDrop()** Replace / modify logic like this:   ```java if (player != null && player.isPremium() && Config.PREMIUM_AUTO_LOOT) {     for (ItemInstance item : items)         player.getInventory().addItem("AutoLoot", item, player, this); } else {     for (ItemInstance item : items)         dropItem(player, item); } ```   ✅ Result:   * **Premium players** → instant loot * **Normal players** → loot on ground   ---   ## ✅ OPTION 2: Auto Loot via Character Variable (More Flexible)   Useful if you want **GM control** per character.   ### 🔹 Premium activation   When premium is added:   ```java player.setVar("AUTO_LOOT", "1"); ```   ### 🔹 Drop check   ```java if (player != null && player.getVarB("AUTO_LOOT")) {     player.addItem("AutoLoot", item, player, true); } else {     dropItem(player, item); } ```   ---   ## 🎯 BONUS (Recommended Add-Ons)   ### 🔸 Adena always auto-loot (even non-premium)   ```java if (item.getItemId() == 57) {     player.addAdena("Loot", item.getCount(), this, true);     continue; } ```   ### 🔸 Party check (premium leader only)   ```java player.isInParty() && player.getParty().getLeader().isPremium() ```   ---   ## ⚠️ Notes (Interlude Safe)   ✔ Compatible with **L2jAcis Interlude** ✔ No client-side changes ✔ No exploit risk ✔ Retail-like behavior   ---      
  • Topics

×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..