Jump to content
  • 0

Increasing max status values (above 2.147 billion)


Question

Posted (edited)

Hello,

Recently I've got the old files of a custom server (L2 Insolence, similar to L2cz or L2 Getwork).

Sadly, people reach the max status allowed by the client int32 variables pretty fast(image attached), so its hard to keep up with how much itens are actually increasing the status. So I'm trying to figure it out how I could increase these values.Β 

I think the server is L2J, not sure how much that affects it.

Thanks in advance πŸ˜ƒ

Β 

download.png

Edited by Vision

9 answers to this question

Recommended Posts

  • 0
Posted
4 hours ago, scantraxx7777 said:

Not big enough already ? πŸ˜„

Are there really people interested playing this ?Β 

Yeah, its mostly nostalgic for me at the moment, since its a custom server.

  • 0
Posted
On 1/5/2023 at 9:50 AM, scantraxx7777 said:

Not big enough already ? πŸ˜„

Are there really people interested playing this ?Β 

I remember playing L2Getwork when I was 12 years old and enchanting my fists 3 days straight. Got em to +8000 πŸ˜„

This is more of a 'PvE' gameplay servers, enjoyed by many people who love these type of 'idle' games (where u can turn your brain off and spam clicks to progress, this is very similar).

Β 

-

Β 

The easy way to do it is by providing players with a custom panel with enough space to display everything and you can use any number u wish, checkΒ http://l2kairos.com/Β they provide status in community board cause u can reach over 100kkk patk/matk etc.

Β 

If you got money to pay/experience you can modify the interface to display the stats on existing windows, but it can be tricky if you never did smth similar (that's why I said money to pay).

  • 0
Posted
9 hours ago, An4rchy said:

I remember playing L2Getwork when I was 12 years old and enchanting my fists 3 days straight. Got em to +8000 πŸ˜„

This is more of a 'PvE' gameplay servers, enjoyed by many people who love these type of 'idle' games (where u can turn your brain off and spam clicks to progress, this is very similar).

Β 

-

Β 

The easy way to do it is by providing players with a custom panel with enough space to display everything and you can use any number u wish, checkΒ http://l2kairos.com/Β they provide status in community board cause u can reach over 100kkk patk/matk etc.

Β 

If you got money to pay/experience you can modify the interface to display the stats on existing windows, but it can be tricky if you never did smth similar (that's why I said money to pay).



Exactly! It becomes more of a "PVE gameplay" with idle gaming...could even be considered one of those auto battle/idle games from mobiles, where its more about management than skill(unless you do PvP of course).

And yes, I have no idea how to do it, but I'll give it a look on the kairos server so I can have an idea of what can be done, thank you πŸ™‚

  • 0
Posted
9 hours ago, toann2222 said:



Exactly! It becomes more of a "PVE gameplay" with idle gaming...could even be considered one of those auto battle/idle games from mobiles, where its more about management than skill(unless you do PvP of course).

And yes, I have no idea how to do it, but I'll give it a look on the kairos server so I can have an idea of what can be done, thank you πŸ™‚

Β 

Basically stats are usually 'double' type and not 'int' server-side, so the only thing you would have to do in order to properly display big stats is make a html and display them there rather than send them to the client which treats them like 'int' and u get the 2kkk max value. It should be very simple to do.

  • 0
Posted
8 hours ago, An4rchy said:

Β 

Basically stats are usually 'double' type and not 'int' server-side, so the only thing you would have to do in order to properly display big stats is make a html and display them there rather than send them to the client which treats them like 'int' and u get the 2kkk max value. It should be very simple to do.

in case anyone tries something like this, what I did was to follow An4rchy tip and use the already created shift+click function to show mobs stats/drops, to show the player stats too.

so in the L2NpcActionShift.java file, I changed this line to show the extra stats πŸ™‚

final StringBuilder html1 = StringUtil.startAppend(1000, "<html><body>" + "<br><center><font color=\"LEVEL\">[My Stats]</font></center>" + "<table border=0 width=\"100%\">" + "</td></tr>" + "<tr><td>P.Atk.</td><td>", String.valueOf(activeChar.getPAtk(null)), "</td></tr><tr><td>M.Atk.</td><td>", String.valueOf(activeChar.getMAtk(null, null)), "</td></tr>" + "<tr><td>Magic Crit. Rate.</td><td>", String.valueOf(activeChar.getMCriticalHit(null,null)), "</td></tr>"  + "</table>" + "<br><center><font color=\"LEVEL\">[Combat Stats]</font></center>" + "<table border=0 width=\"100%\">" + "<tr><td>Max.HP</td><td>", String.valueOf(((L2Character) target).getMaxHp() / hpMul), "*", String.valueOf(hpMul), "</td><td>Max.MP</td><td>", String.valueOf(((L2Character) target).getMaxMp()), "</td></tr>" + "<tr><td>P.Atk.</td><td>", String.valueOf(((L2Character) target).getPAtk(null)), "</td><td>M.Atk.</td><td>", String.valueOf(((L2Character) target).getMAtk(null, null)), "</td></tr>" + "<tr><td>P.Def.</td><td>", String.valueOf(((L2Character) target).getPDef(null)), "</td><td>M.Def.</td><td>", String.valueOf(((L2Character) target).getMDef(null, null)), "</td></tr>" + "<tr><td>Accuracy</td><td>", String.valueOf(((L2Character) target).getAccuracy()), "</td><td>Evasion</td><td>", String.valueOf(((L2Character) target).getEvasionRate(null)), "</td></tr>" + "<tr><td>Critical</td><td>", String.valueOf(((L2Character) target).getCriticalHit(null, null)), "</td><td>Speed</td><td>", String.valueOf(((L2Character) target).getRunSpeed()), "</td></tr>" + "<tr><td>Atk.Speed</td><td>", String.valueOf(((L2Character) target).getPAtkSpd()), "</td><td>Cast.Speed</td><td>", String.valueOf(((L2Character) target).getMAtkSpd()), "</td></tr>" + "<tr><td>Race</td><td>", ((L2Npc) target).getTemplate().getRace().toString(), "</td><td></td><td></td></tr>" + "</table>" + "<br><center><font color=\"LEVEL\">[Basic Stats]</font></center>" + "<table border=0 width=\"100%\">" + "<tr><td>STR</td><td>", String.valueOf(((L2Character) target).getSTR()), "</td><td>DEX</td><td>", String.valueOf(((L2Character) target).getDEX()), "</td><td>CON</td><td>", String.valueOf(((L2Character) target).getCON()), "</td></tr>" + "<tr><td>INT</td><td>", String.valueOf(((L2Character) target).getINT()), "</td><td>WIT</td><td>", String.valueOf(((L2Character) target).getWIT()), "</td><td>MEN</td><td>", String.valueOf(((L2Character) target).getMEN()), "</td></tr>" + "</table>");


Thanks for the help

Screenshot_4.png

  • Like 1

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


  • Posts

    • Quick head's up if anyone needs sniffer we have it and the price is reasonable. any server is doable.
    • so u need to create them and then use the icon name in the prefered ones
    • ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Β  Β  Β βš”οΈ Β A NEW ERA OF LINEAGE 2 PVP Β βš”οΈ Β  Β  Β  Β  High Five | 2026 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ We are building something that has never existed before. Not another copy. Not another "x2000 PvP server with TvT." This is a complete PvP ecosystem β€” where every kill matters,every rivalry has a face, and your legacy is worn on your character. We are sharing this here first, before anything is announced publicly. We want feedback. We want the right people. ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ πŸ“Œ Β CORE SERVER FEATURES ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ πŸ”Ή Chronicle .............. High Five πŸ”Ή Rates .................. x2000 πŸ”Ή Safe Enchant ........... +3 πŸ”Ή Max Enchant ............ +10 πŸ”Ή Enchant Rate ........... 33% πŸ”Ή Buff Slots ............. 24 + 4 πŸ”Ή Song & Dance Slots ..... 12 πŸ”Ή Buff Duration .......... 4 hours πŸ”Ή TvT .................... Every Hour Β (Karma + PvP points) πŸ”Ή Hero ................... Every Week πŸ”Ή Olympiad ............... 3 Hours Daily πŸ”Ή Castle Sieges .......... Weekly πŸ”Ή Territory Wars ......... Weekly πŸ”Ή Grand Bosses ........... 1 week respawn πŸ”Ή Costume Farm Area ...... Custom mobs & zones πŸ”Ή NPC Buffers + GM Shops πŸ”Ή Custom Economy πŸ”Ή Custom Playground πŸ”Ή Custom Events πŸ”Ή Anti-Bot | Anti-DDoS | Highly Secured πŸ”Ή Stable | No Lag | No sudden wipes ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ πŸš€ Β 5 FEATURES THAT HAVE NEVER EXISTED Β  Β  Β ON ANY LINEAGE 2 SERVER ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ─────────────────────────────────────── πŸ’° Β 1. BOUNTY HUNTER SYSTEM ─────────────────────────────────────── Every player with high PvP points becomes a target. Anyone can place real in-game adena / currency / gear as a bounty on any specific player they want dead. Kill the target β†’ collect the bounty. β†’ Top 10 Active Bounties visible LIVE on website + in-game board β†’ Updated in real time β€” anyone can see who has a price on their head β†’ Clans place bounties on enemy leaders before sieges β†’ Creates real economic stakes behind every single kill β†’ 100% organic drama β€” no admin needed to create conflict ─────────────────────────────────────── πŸ† Β 2. SEASON RANKED LADDER + REAL PRIZE POOL ─────────────────────────────────────── Every 45 days a Season ends. PvP Score resets. Gear stays. Glory is earned. β†’ Top 3 players receive a REAL money prize pool at season end β†’ Top clan earns a unique exclusive in-game titleΒ displayed for the entire next season β†’ Permanent Hall of Fame on website β€” name, class, kills, and season β€” forever β†’ Season end = fresh ranking start for everyone New players have a real shot. Veterans must defend. β†’ This single feature will make clans actively recruitΒ Β and communities form around the server organically ─────────────────────────────────────── πŸ“± Β 3. LIVE SERVER DASHBOARD ─────────────────────────────────────── A fully live website β€” accessible from any phone or browser: β†’ Real-time Kill Feed β€” who killed who, where, when β†’ Live PvP Leaderboard β€” updated every minute β†’ Live Bounty Board β€” active bounties and claimed kills β†’ Grand Boss timers β€” next Baium, Antharas, Valakas spawn β†’ Siege countdown with registered clans visible β†’ Server population β€” online now, today's peak, all-time peak Why this matters: Players check their phone at work and see their clan is losing the siege. They log in. They recruit a friend. That friend stays. Friends who have never played see the stats and ask what server it is. This is automatic word-of-mouth that no advertisement can buy. ─────────────────────────────────────── βš”οΈ Β 4. NEMESIS SYSTEM ─────────────────────────────────────── The system tracks who kills you most. If the same player kills you 5 times in a row β€” he becomes your official NEMESIS. β†’ A red skull icon appears above his head β€” visible only to you β†’ Kill your Nemesis β†’ DOUBLE PvP points Β  Β + server-wide announcement: "[PlayerX] has avenged his honor against [PlayerY]!" β†’ If he kills you 10 times consecutively β†’ you receive the title [Hunted] β€” visible to the entire server Β  Β Public humiliation. Maximum motivation. β†’ Eliminate your Nemesis β†’ your title is removed Β  Β He receives [Defeated] for 1 hour This transforms anonymous PvP into personal rivalries. Players will bring friends just to help eliminate their Nemesis. These stories are what people talk about for years. ─────────────────────────────────────── πŸ‘‘ Β 5. CLAN SIEGE CROWN β€” WEARABLE LEGACY TROPHYΒ  ─────────────────────────────────────── This feature does not exist on any L2 server in the world. Every clan that wins a Castle Siege receives 10 custom hat/accessory items β€” physically wearable in-game. Each Crown is: β†’ UNIQUE per castle β€” Aden Crown has a different visual from Giran Crown, Rune Crown, Goddard Crown, etc. β†’ PERSONALIZED β€” the clan name AND clan crest are embedded visually on the hat itself, like a clan cloak but on your head Β  Β Every player who sees you knows exactly who you are and what castle your clan owns β†’ NUMBERED β€” tooltip reads: Β  Β "Crown of Aden #4/10 β€” Season 2" Β  Β A collectible. A proof. A statement. β†’ PERMANENT β€” you lose the castle at next siege, you keep the Crown β†’ LEGACY β€” at season end it becomes a permanent trophy: Β  Β "Crown of Aden β€” Season 2 Β | Β [YourClanName]" Β  Β Stored in your inventory as living history When a player wearing this Crown walks through Giran, everyone sees the clan crest displayed on the accessory. No leaderboard needed. Status is worn on your character. Β  -------------------------------------------------------------------------------------------------------------------------------------------------------------------- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ πŸ› οΈ Β WHO WE ARE LOOKING FOR ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ We are building the right team first. No launch date until everything is right. βœ… H5 Developer β€” L2J or L2OFF Β  Β Must have experience with high-rate PvP servers Β  Β Bonus: experience with custom feature development βœ… Web Developer β€” for the Live Dashboard + account panel Β  Β Must be comfortable with real-time data display Β  Β (websockets, live feeds, mobile-friendly) βœ… Designer / 3D Artist β€” for custom Crown visuals per castle Β  Β If you have L2 texture/model experience, we want to talk βœ… GMs / Community Managers Β  Β Active, fair, experienced, trusted by the community βœ… Beta Testers Β  Β Players who know H5 PvP inside out Β  Β Willing to stress-test and break things on purpose ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ πŸ’¬ Β WE WANT YOUR HONEST FEEDBACK ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ We are building this WITH the community. Every reply here shapes the final product. β†’ Which of these 5 features excites you most? β†’ What do you think will NOT work and why? β†’ What is missing that would make you stay for months? β†’ Would you play this if it opened tomorrow? We are not looking for hype. We are looking for honest opinions from people who have seen servers rise and fall. Tell us what we are getting wrong. Reply below or send a PM directly. Serious people only. ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ P.S. β€” The inspiration for this project came from a server many of us played years ago called L2Gang. That nostalgia is what started this conversation. What we are building is something entirely new. ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
    • Please is anyone who can share the compiled version of the l2editor source for interlude? Because i run theΒ !GenerateLibs.bat with the corrected code by CriticalError and then i try to build with the vs 2013 but i get errors again and again and when i try anyway to open or create something with the UnrealEd.exe then it closes automatically.
  • 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..