Jump to content

Best Developer in MxC  

  1. 1. Best Developer in MxC

    • Ovenus
      0
    • Intrepid
      0
    • ◦Cobra◦
      0
    • Serk
      0
    • Versus
      0
    • KяaSh™
      0
    • Coyote™
      0
    • b1gboss
      0
    • Horus
      0
    • dariofight
      0
    • skylancer
      0
    • Setekh
      0
    • down
      0
    • wizzy
      0
    • DrHouse__
      0


Recommended Posts

Posted

And I hadn't ever heard about you until you posted in this thread. What does that mean?

 

Ye nub, but I dont shout around trying to convince everyone Im best.

Posted

Anyway, best devs ***IVE HAD ANY CONNEXION WITH*** are nBd and Ahmed. Developers are developers everywhere, not just on maxcheaters. When anyone in here will be at nBd's level then I'm gonna vote.

 

KKTHXBB

Posted

this chat is lame and gay.. I'm out >.>

 

If VaGo wants to be known he dose so.. and not by invite some ppl on a server and asks them for help to test shit >.> his a active dev for 3 years if im right.. And hes code style is unique. =] just sayin XD

Posted

Voted coyote, cuz i realy don't know all peeps what they did with dev work

and i think its a nice guy:D

and gj coyote, this is your first vote:D

Posted

Anyway, best devs ***IVE HAD ANY CONNEXION WITH*** are nBd and Ahmed. Developers are developers everywhere, not just on maxcheaters. When anyone in here will be at nBd's level then I'm gonna vote.

 

KKTHXBB

 

hahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaha first

same english powah T.T

 


 

ps: Ovenus , keep creating bots to vote yourself.

 

 

hahahahahahahahahahahahahahahahahahahahahahahahahahahahahaha second

 

 

and......................... Seketh...

 

 

i didn't ask to add me in poll,zero did it.,however i didn't say to vote me..you judge me for some things and i am not speaking all these time because you are l2jdeveloper and you have comblex as i understand because you'll smite my karma-you flame without reason because why you don't accept the judgement and you'are trying 2 years to make a l2jpack and you don't succed ,you start doing it from beginning.you speak about me without knowing me.people viewing and judging from my work not from my words.

 

with love Ovenus <3

Posted

hahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaha first

 

hahahahahahahahahahahahahahahahahahahahahahahahahahahahahaha second

 

 

and......................... Seketh...

 

 

i didn't ask to add me in poll,zero did it.,however i didn't say to vote me..you judge me for some things and i am not speaking all these time because you are l2jdeveloper and you have comblex as i understand because you'll smite my karma-you flame without reason because why you don't accept the judgement and you'are trying 2 years to make a l2jpack and you don't succed ,you start doing it from beginning.you speak about me without knowing me.people viewing and judging from my work not from my words.

 

with love Ovenus <3

Dude i succeeded and still do and earn cash outta it. In fact ur a l2mafia dev? guess what Dimmis hired me and actually is willing to buy the new archid premium for his new FULL GvE not a lme kvn. ^^

 

Ull talk about my work when ur actually smart enough to make a simple socket connection or implement smth on interlude with out copying L2JServer =)

Posted

Ye nub, but I dont shout around trying to convince everyone Im best.

 

Have you ever seen Ovenus doing so? I haven't.

Posted

Dude i succeeded and still do and earn cash outta it. In fact ur a l2mafia dev? guess what Dimmis hired me and actually is willing to buy the new archid premium for his new FULL GvE not a lme kvn. ^^

 

Ull talk about my work when ur actually smart enough to make a simple socket connection or implement smth on interlude with out copying L2JServer =)

 

 

where did you succed my friend on your private pack? :S btw i dont know you and i  don't care about you

:)

 

Posted

 

where you succeeded my friend on your private pack? :S btw i dont know you and i din't care about you :)

 

u do know me and u really do care what i say. the fact that ur denying it and claiming u don't care just proves my point about who you are and what you do.

And about Archid & Arin u'll see the new l2mafia soon enough.

Posted

u do know me and u really do care what i say. the fact that ur denying it and claiming u don't care just proves my point about who you are and what you do.

 

 

ok :)  79.167.26.194

Posted

He invited ppl to help him test dunno shit

 

Asking for Helpers makes you an arrogant ass that thinks he's the best?

Guest
This topic is now closed to further replies.



  • Posts

    • sell adena l2rebon signature x1 - 1kk = 1 dollars l2reborn x10 - 500kk = 4 dollars E-Global x Lu4 - 1kk = 2 dollars BOHPTS - x20-x500 TOP PRICE DISCORD - GODDARDSHOP TELEGRAM - MMOPROMO Also on sale are Epic jewelry, Clothes at a very good price
    • Hello Sorry, my Discord is: ave7309
    • “Hello, I’d like to present a short description of the server. Everyone starts equally at max level 80. The server includes a custom buffer, custom class master, custom weapons and armors, custom zones, custom teleporter, custom raid bosses, and much more. I’ll leave a link in the description for those who want to see how everything looks inside. The server is only open on weekends, and you can find more news via the Facebook link.”   https://www.facebook.com/profile.php?id=61578869175323
    • 1. You where subscriber 3 years ago. 2. There is no current L2jMobius 2.8 Seven Signs version. Subcriber or not. 3. You have your answer from multiple forums that more items is more delay.  
    • 1. Optimize Packet Serialization Look in ItemList.java or wherever the inventory packet is constructed. Instead of building the packet with inefficient string concatenation or repeated allocations, use a preallocated buffer and avoid creating new objects for each item. Mobius sources are Java-based, so profiling with something like VisualVM or YourKit can help see where most time is spent. 2. Avoid Sending the Full List Each Time Modify the server to send only changed items (diff packets) when the inventory window opens. Some newer forks implement this as “lazy loading” or paged inventory so the client only loads e.g. 100 items at a time. 3. Limit the Inventory Size Per Page Instead of showing all 500 slots at once, split the inventory into pages/tabs (100 slots each). When the user switches a tab, send only that page’s items. This requires some client-side editing, but it’s the most user-friendly long-term fix. 4. Database & Cache Optimizations Ensure your items table is indexed by owner_id to make the query for player items fast. Cache item templates and static data so they are not reloaded every time the inventory is shown. ⚠️ Things to Keep in Mind Increasing slots from 80 → 500 does not just change a number — it multiplies the workload for packet building and UI rendering. You can’t fully avoid some extra cost with 500 items, but you can keep it under a few milliseconds if you optimize how and when the data is sent.    
  • Topics

×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock