Jump to content

Recommended Posts

Posted

You made some hidden topics and you say that you will need 100+ posts to see it and when we reach those posts we can see the link... we must donate ffs ;(

[Hidden Text: You need to become a Donator or Platinum Member to see it]

But on the beggining the topic shows you:

[Hidden post: You need 100 posts or become a Donator or Platinum Member to see it. You currently have X.]

 

Why you don't tell this from the beggining? That you must donate or be a platinum member to see this topics?? This is not even close to funny...

 

 

Posted

i say it again that this happens to protect our shares from leechers!!!btw for l2Brut you have 103 posts to see it so why are you complaining?in every site like this you pay for accounts and you pay for activation or you have to pay just to see one section!here you pay a symbolic ammount for server issues and you can see all!!and i dont think 5-20$ are soooooooooooooo expensive it is nothing!!!it is for a lifetime and you will be able to see whatever topic you want and other functions

 

look here

http://www.maxcheaters.com/forum/index.php?topic=11416.0

 

 

AND THIS IS NOT AN EXPLOIT

Posted

i say it again that this happens to protect our shares from leechers!!!btw for l2Brut you have 103 posts to see it so why are you complaining?in every site like this you pay for accounts and you pay for activation or you have to pay just to see one section!here you pay a symbolic ammount for server issues and you can see all!!and i dont think 5-20$ are soooooooooooooo expensive it is nothing!!!it is for a lifetime and you will be able to see whatever topic you want and other functions

 

look here

http://www.maxcheaters.com/forum/index.php?topic=11416.0

 

 

AND THIS IS NOT AN EXPLOIT

 

yeah i agree with u but there is ppl like me that dont have a credit card to make donations, so theres no way to use pay-pal or any other internet payment system so at all we can just use the post counts to see such contents :X

Posted

i just wanna ask somethink. Will it always be like that, or maxtor has an economic problem for the time being and used this as a temporary solution?

Posted

yeah i agree with u but there is ppl like me that dont have a credit card to make donations, so theres no way to use pay-pal or any other internet payment system so at all we can just use the post counts to see such contents :X

 

neither do i have credit cards!!!i have only bank accounts that i dont use them on internet for personal reasons

 

noble, you didn't understand well, when you look for l2brute for exemple, they ask you to have 100+ posts, and when you have those, they ask you to be Donator LOLen!!!!

 

this one also:

http://www.maxcheaters.com/forum/index.php?topic=7280.0

 

maxtor works on it and almost fixed it

 

i just wanna ask somethink. Will it always be like that, or maxtor has an economic problem for the time being and used this as a temporary solution?

 

if the 5 bucks($) for donate members or the 20$ for platinums you pay to become a donate member or platinum will solve maxtor's any economical problem then maxtor should be one the most poor ppl in the world if he is going to w8 to earn much money from the donations you make pfff!!!maxtor is not in any need of such few money...and he decided to make lifetime everyone who pays in order for them not to payback again after a period of time to update their status as the donations were for a limited amount of time

Leechers ? 99.999981% of these "exploits" are leeched from somewhere else and 99.99999% of them aren't working.

oh and BTW. how to delete posts ?

 

when  a share is not from us! i mean the mxc members there are ALWAYS credits in the end of the post which says Credits:RageZone for example!!!most of our shares are originally mxc shares....if they work or not is because there are many ADMINs wandering around in maxcheaters community and they find the problem or the exploit from us and fix it in their servers!we do not judge ppl for being GMs neither we cant allow their precence here!!!everyone is acceptable in here and mxc cheaters doesnt concern if they are admins in servers or players!!they only thing that is NOT working from here are the ENCHANT BUGS you all post all the time!!!we have told you 1000000 times that enchant bugs dont work and it may be the only thing you ll find here that doesnt work

 

normal users cant delete posts

 

ty

Posted

A simple question: if i pays, somebody will help me to find something to do in the GRAVEDAD ZERO server? Because, if the answer is: yes my friend, I will pay with a smile in my face.

Thanks.-

Posted

here we dont have anything that is hidden from ppl!!!we dont have hidden exploit sections!!!let me make something clear!!!

 

just like donators in Lineage same is Donators in MxC forum!!!Donators just get what every simple member can get!!!you all take the same info but donators only get them faster!!!we are not like other forums where you pay to activate your account,you pay to register your account and you pay to enter some prohibited areas where you find nothing at all!!!you donate in order to see the hidden texts a lot of faster without anyone accusing you for spamming etc and you can see those posts without needing posts and to help maintain this forum so that can be up and running with closing for hours like ragezone or shadows everyday!!!

 

 

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