Jump to content

Recommended Posts

Posted

Well this program is just wonderful....If you are dualboxing and you have in the other box Buffer by pressing the follow button the buffer will follow the main char even if you are 2km away from him with your main char...

http://rapidshare.com/files/43224007/MultiWin.rar

Source: allcheats.ru

Posted

I cant see this yet (not enough posts) but isn't it possible to dual box by simply editing the ini (user.ini or l2.ini, dont remember, been ages since I last edited em :P) and then stop using any kind of loader? If I want to try any other server instead the one I play in, I just decrypt (using l2encdec) the l2.ini and change ip/port then connect to the other one... plus it lets me open as many clients as I want, since the loader is responsable for not allowing you to run more than one client.

Posted

maybe it's a multiwin program that somehow frees up memory usage from the other window?

 

Well this program is just wonderful....If you are dualboxing and you have in the other box Buffer by pressing the follow button the buffer will follow the main char even if you are 2km away from him with your main char...

i cant give you link but i can give you texts :D

Posted

The program removes the fps lag if ur computer can handle it. I would not use this unless I try to make my boxs follow me in tight places like catacombs/towns/castles etc..

 

If I use it all time my comp prolly haves to do some extra work and due to this my main char would lag. Not tested this  - just a thought.

Posted

I dont have any lag at all even without this program, running on a core 2 duo E6600 w/ 2gb ram and a X1900XT@XTX.. with 2 clients.. when I run 3+ I have to hit alt+p 'on em all so I can still play, but it runs smooth and they don't stop following me ever.. :P

Posted

I dont have any lag at all even without this program, running on a core 2 duo E6600 w/ 2gb ram and a X1900XT@XTX.. with 2 clients.. when I run 3+ I have to hit alt+p 'on em all so I can still play, but it runs smooth and they don't stop following me ever.. :P

 

Glad to hear it !!

But here isn't the right place to espone your comp stats..thanks... ;D

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..