Jump to content

Recommended Posts

Posted (edited)

why you have to be so mad bro

Cuz i didn't received pony for Christmas :( :D .Did you received your bone?You were good dog this year,you must receive a bone :P

Edited by fastdie
Posted (edited)

Cuz i didn't received pony for Christmas :( :D .Did you received your bone?You were good dog this year,you must receive a bone :P

hey you have a topic about l2etf.com i wonder how you are? claww? 

 

 

 

 

GO go guys good stable server,no lags,good protection,active gm's,much online,much events much funnnnnn go go go.And for haters:If you live in history then stay childish,i live in present for future and this server is just what i need.Dont care about past!

 

  :okey:  :okey:  :okey:

 

 

OHHH stalone told me you are bg and were always crying on his skype and he blocked you sad stroy.I know in deep you love stalone and wish have sex with him  :poker face:

Edited by jakk
Posted (edited)

Cuz i didn't received pony for Christmas :( :D .Did you received your bone?You were good dog this year,you must receive a bone :P

give me ur adress ill send u 3 ponies ggbg

Edited by Stalone
Posted

hey you have a topic about l2etf.com i wonder how you are? claww? 

 

 

 

 
 

  :okey:  :okey:  :okey:

 

 

OHHH stalone told me you are bg and were always crying on his skype and he blocked you sad stroy.I know in deep you love stalone and wish have sex with him  :poker face:

1st Im not Claww.2.I was crying in skype?About what? :D Of course stalone won't tell but i will :P .After every fail he was crying on my shoulders :( .Sad but true.Damn why i didn't copied his MEGA CRY when etf failed.He even wrote whole poem how he aways fail and something about destiny and so on :D  .Nice try,but i don't have any reason to cry.Yep i supported him 1 year ago,but i sow what kind of failer he is so i told him bb.So go ahead doggy,what you will say next?

P.S. Did you got your bone?

P.S.2.Yeah Christmas miracles exist Stalone isn't in prison :( .I am exited to see your 2014 fail.Or maybe it will be epic fail?or mega fail?Did i mentioned fail? :D 

 

Happy new year

Posted

1st Im not Claww.2.I was crying in skype?About what? :D Of course stalone won't tell but i will :P .After every fail he was crying on my shoulders :( .Sad but true.Damn why i didn't copied his MEGA CRY when etf failed.He even wrote whole poem how he aways fail and something about destiny and so on :D  .Nice try,but i don't have any reason to cry.Yep i supported him 1 year ago,but i sow what kind of failer he is so i told him bb.So go ahead doggy,what you will say next?

P.S. Did you got your bone?

P.S.2.Yeah Christmas miracles exist Stalone isn't in prison :( .I am exited to see your 2014 fail.Or maybe it will be epic fail?or mega fail?Did i mentioned fail? :D

 

Happy new year

bulgari bulgari

Posted

server is awesome

is full of event and is really good

i'm enjoyng it a lot but if stallone is the admin and he answer to people like that is not nice

i undestand they are offending your work but the admin is the person that everyone should respect and ofc the admin should have a serius attitude in all the occasion

server is really good don't ruin your work for doing bully answer's on forum

Posted (edited)

server is awesome

is full of event and is really good

i'm enjoyng it a lot but if stallone is the admin and he answer to people like that is not nice

i undestand they are offending your work but the admin is the person that everyone should respect and ofc the admin should have a serius attitude in all the occasion

server is really good don't ruin your work for doing bully answer's on forum

i suppose you 're new here...stalone was denying that conflict was even his project cuz he knows that if ppl knew stalone was behind this trash the only ppl joining would be the randoms and the non english speaking brazileros,bombaaaastic.

 

Take a look on the 19th page on my 2 quotes and see for what clown you are playing  :troll:

Edited by Eagle_Eye
Posted

nice server :))) epic jewel set cost 60 euros..i wounder how manny people have epic jewels?

i have 5x full rb set. 

 

if u want, i can sell for 50euros. 

Posted

i suppose you 're new here...stalone was denying that conflict was even his project cuz he knows that if ppl knew stalone was behind this trash the only ppl joining would be the randoms and the non english speaking brazileros,bombaaaastic.

 

Take a look on the 19th page on my 2 quotes and see for what clown you are playing  :troll:

no i'm not new

i joined because there are stallone in the project but claww too and claww have my trust

but leave for a sec stallone attitude

server in his self is good expect some bullshit

the only thing that going to make the server a shit is the admin that do the bully on a fucking forum with 2 kids

ADMIN SHOULD BE THE MOST RESPECTABLE PERSON

Guest
This topic is now closed to further replies.



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