Jump to content

Why You Think That There Aren't Worthy Servers To Play?  

86 members have voted

  1. 1. Why You Think That There Aren't Worthy Servers To Play?

    • Because Newbies Create Their Own HomeMade Server
      22
    • Becaue There Are Donations
      8
    • Because They Care Only About Money
      11
    • Because The Hosters,Gms,Admins Are Selfish Or Corrupted
      10
    • Because Of The Custom=Disbalance
      7
    • Because Of The Disbalance(Edited Skills.Overpowered Chars)
      3
    • Because The Gms,Admins Don't Care About Their Server
      11
    • Another Option(Post It)
      14


Recommended Posts

Posted

Most Important Reasons...(my opinion)

1st  Newbies Create Their Own HomeMade Server

2nd The Disbalance(Edited Skills.Overpowered Chars) + The Custom Items Like l2pride,dominion,mafia etc... etc... u forget that u play l2 omg!

3nd  The Gms,Admins Don't Care About Their Server and the conclusion is....

[move]They Care Only About Money[/move]

 

 

Sooooo....

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Suffler had right

 

 

Lineage II is DEAD!

that's true

Posted

l2 is dead for people who spamming on mxc with stupid shit like l2 server home made balance.....

What the fck.

There are still worth server out there but not many.

L2dc servers are pretty good ( donation for name change etc,no in game item)

WTF WHen L2  was balance?This game is made that way if you dont like it just look for other game.(wow maybe?)

Posted

l2 is dead for people who spamming on mxc with stupid shit like l2 server home made balance.....

What the fck.

There are still worth server out there but not many.

L2dc servers are pretty good ( donation for name change etc,no in game item)

WTF WHen L2  was balance?This game is made that way if you dont like it just look for other game.(wow maybe?)

 

To those people, only Interlude is Lineage.

Posted

EVERYTHING IS TRUE!

Totally agree. Can't find a decent server to play because all servers have something from the above disadvantages.

Posted

Decent servers:

 

http://www.raidfight.eu

http://www.bfdr.eu

http://www:L2Sublimity.com

 

There are not (or many none) many "decent" servers that are Interlude. Most good servers are Epilogue now, and I'm sure you know the reason, because OBVIOUSLY Epilogue and obove is for people who can play other classes, not just archers and daggers.

Most good servers are low rates too, because low rates let you experience the game, not just farm than the server closed, or some Greek GM comes to PK you with GM char because he feels like it.

Posted

Because they are only looking for money and when server is about to die  due to ppl who leave server,they make a new one and start donate again ;)

Posted

Cmon i don't think that this is the problem.

Newbies server u can understand which are before u join.From the sites,i check them and i don't join./Ignore them

If you know the search engine at google or hopzone ,u can easily find a server,dedicated etc.

But at some server have "overdonates" which unbalance the whole game(mafia,dominion & more).

Some guys open server for money ....But yes,if we see it generally the most of server out there are homemades.

 I know a guy who has open about 50 servers.Open it,add it on hopzone and then down.Name Venos -.-

Anyway..I hope  get me xD

come on ... lol theats not all true , first off all u can make a nice "homemade servers"  if u are buying a premium pach ..do not matters if he is hosted at home  if he have a good server machine and a good network conection .... in fact u should help the home made server to grow  not to flame them ....home made server  die beause u flame them ... i agree whit u there are some ugly home made server but all are Hight rate /pvp / custom ...maybe some of the ppl who open a home made server workd much on they project and have a good network/server machine and the host is at home ..what is wrog  whit theat ?

  • 3 weeks later...
  • 3 weeks later...

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

    • First, don't really follow the "main voice", moreover if you consider it an hobby. Simply do what you want, you got only one life so use it as you want. If you make it an hobby, it's exactly like piano, or velo - only practice makes you better.   Secondly, how do you learn things ? It's actually a really important question, since some can simply be scholar, read books (theory) then practice ; and some simply can't read books. I'm the second type, I hated school, I find it boring - my knowledge in Java comes from try-and-fail. You improve your coding style every year or so, I can myself rewrite my own code (which I already considered top-notched) after a while. You always learn something new - even if Java barely evolves. L2J is a fun way to learn programming, it's a giant sandbox where you can edit anything, and I believe it should be taken as it.   My own way of learning was as follow : Add existing customs, no matter what they are : the point is to know main classes used by L2J / customs. L2J is barely Java knowledge ; the true knowledge is to know WHAT to search in WHICH location (what I call, organization). You have to understand than EVERYTHING you think already exists, in a form on another, in the source code. A custom is only the association of the different mechanisms you found "here and there", glued together in a proper goal. Once you know main classes to edit, and the customs you added are compiling fine, the main point is to know WHAT exactly you DID. Try to understand WHY and WHERE you actually copied the code. Third point would be to MANIPULATE the customs you added in order to fit your wish. First edit little values, then logic conditions ; eventually add a new Config, or a new functionality to the custom. Fourth point would be to begin to craft your own ideas. Once again, EVERYTHING already exists, in a form or another. You want a cycled event ? You got Seven Signs main task as exemple. Npc ? Search any type of Npc and figure out what it does. Fifth point would be to understand Java - mostly containers (WHAT and WHERE to use them), variables types and main Java mechanisms (inheritance, static modifier, etc). You should also begin to cut your code into maintainable classes or methods. Java can actually run without optimization, but bigger your ideas, more optimized and well-thought it should be. It's direct saved time in the future, and you would thank yourself doing so. Main tips : ALWAYS use any type of versioning system - GIT or SVN. It allows to save your work, step by step and eventually revert back anytime you want if you terribly messed up. L2J is 80% organization knowledge, and 20% Java knowledge. Basically, if you know WHAT and WHERE to search, if you aren't dumb, it's easy to replicate and re-use things. Cherry on top is to use a already good coded pack to avoid copy-paste crap and get bad habits. Avoid any type of russian or brazilian packs, for exemple - their best ability is to leak someone's else code. Obviously you need some default sense of logic, but Java and programming in general help you to improve it.   Finally, most of your questions could be solved joining related Discord (at least for aCis, I can't speak for others) - from the moment your question was correctly asked (and you seemed to search for the answer). My community (and myself) welcomes newbies, but got some issues with noobies.   The simpliest is to try, fail and repeat until you succeed - it sounds stupid, but that's basically how life works.   PS : about Java ressources, before ChatGPT, it was mostly about stackoverflow website, and site like Baeldung's one. With ChatGPT and alike, you generally double-cross AI output to avoid fucked up answers. Also, care about AI, they are often hallucinating really hard, even today. They can give you complete wrong answer, you tell them they are wrong, and they say "indeed, I suck, sorry - here's a new fucked up answer". You shouldn't 100% rely over AI answer, even if that can give sometimes legit answers, full code or just skeletons of ideas.   PPS : I don't think there are reliable ressources regarding L2J itself, also most of the proposed code decays pretty fast if the source code is actually maintained (at least for aCis). Still, old coded customs for old aCis sources are actually a good beginner challenge to apply on latest source.
    • WTS: - AQ - Baium - Zaken  - Frintezza - Vesper Fighter Focus Fire Element   pm for detalis
    • We have the best price! L2Reborn.org Signature x1 Franz NEW!! 1KK = $20 HURRY TO BUY AT THE TOP PRICE discord - adver745645
  • 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