Jump to content

Recommended Posts

  • 2 weeks later...
Posted

u write there a lot of exploit but no one worked for me even the transfer of augmented weapon don't work cuz i don't see the augmented weapon in the item list :( i think all of this are fixed on my server

Posted

I have done an update to my post

I add 1 more xploit and i also reorganize all the Bugs exploits and Tricks in the 1 post

[Expet Dupe cos there it was a post whit more than 20.000 letters]

24/07/08

 

Posted

i dont have 100 post:S:S

 

Then why the hell do you post?

 

 

On topic:

Very nice collection... I'll try and read them through and test them... and report back if they work ;)

Posted

The multiskill bug works also with Elf class so you can make a (a elf mage)/(a human mage) just do it almost the same but start with a elf mage. accept the human mage quest and get the item, go to lvl 76 get 3rd class and switch the class to a cleric ;) congrats your a Elf/Cleric

  • 1 month later...
Posted

the 2 last posters ¬¬ what ever.. i am use to see noobs like u but OK LETS REZzzZzZZzZZzZ This Madafaking topic xD

 

Ok u may remember that looooOoOoOong time ago one dude post a way to breake the walls during sieges , even if it wasnt yours [by this i mind u can help your friends during their sieges when u r not register on it] well he just post a way to do it whit saggi... lets just say not evry one is saggi and i think that mages do best dmg to castle doors ;P well lets start to explain this BuuUuUUGGggGg

 

1 Do a mage (=D) well u remember that the bug was simple , u just need to target a friend Use stun skill and while the skill was being casted u just need to change target to the casttle door and vuala u start hiting the door , but come on 1 arrow is not same has 1 spell from sph :P

 

so the bug is basically the same just that u need to make it fast (mage skills are casted pretty fast if u think xD)

 

so what have i been trying (and work ^_^) was alternative ways to take the walls down whit mage

how? (here it rly start)

 

1 U will have to do 1 macro that auto target the castle door /target castledoor (Du’h >.<) that also inculdes after this target a macro of use /useskillforce (what ever u want)

2 well if u dont have artritis in your fingers u just have to do this fast :

2.1 Target anyone and use a lvl 1 skill (so u make 0 dmg) and  after this use the stupid macro u did before and what will u do?

 

U WILL HIT THE DOORRRRRRRRRRRR YHEAAAAA <.< >.> ok.. this is one way but if u have artritis in your fingers u just have to do something more stupid even ...

 

hit your friend whit lvl 1 skill an while u do this use the key impr pant petsis (take a few pics) and laaaaaaaaaag your game so when u do this lag u can target door and hit by yourself the door whit f1 + ctrl................................

 

Well That is it (i had good times destroying doors in any one siege xD)

 

so try and u will have fun BUT be careful if any one take pic u r ass is  Busted

 

W8888 i Forgot whit this u can breake any kind of wall (for example doors that keep mobs inside) why pass them whit my other bugs if u cant take it down >.< ( i know is more easy whit the stryder but u dont lose nothing by doing it)

 

I have try this in IL and HeLLBouND

 

Now yes SEE YA

agreed but any fighter breaks doors faster than mage,u just use a skill and then it just keeps attacking,with mage its 1 hit each time;)

 

best for this is TH or tyrant,lethal the door:P

Guest
This topic is now closed to further replies.



  • Posts

    • Thank you everyone — we're doing our best to deliver the highest quality experience!   ⏳ Less than 2 days left until the L2Elixir Launch! Our team is working nonstop, polishing every little detail to ensure a smooth and exciting opening. A huge thank you to everyone who participated in the Open Beta — your support and feedback have been invaluable. Get ready… the adventure begins soon! ⚔️✨   Launch: November 28 & 21:00 UTC +2   Website: https://l2elixir.org/ Discord: https://discord.gg/5ydPHvhbxs  
    • Do you sell interlude interfaces?
    • in conclusion when somebody who has a project for 10+ years still on development writes an e-say to try until you succeed and then advertises his project, one of the reasons is he needs money, so l2j has once more become pure expensive hobby, you wont make money out of it.   You can still use L2jFrozen and get better results for this, i know some people that done it    keep in mind that C in aCis stands for Crappy, and after all these years its not a cool wordplay anymore, its a fact, prove me wrong.
    • 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.
  • 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