Jump to content

UnAfraid

Members
  • Posts

    112
  • Credits

  • Joined

  • Last visited

  • Days Won

    2
  • Feedback

    0%

Everything posted by UnAfraid

  1. You shouldn't worry about which one is faster, the difference is probably in nano seconds, its mostly matter of personal choise, in L2J we decided to make methods like isPlayer(), isPet(), isMonster() not because they're faster, but mostly because it shortens the code, avoids imports, and looks better. Anyway back on topic, @antoskasas123. Show us screenshot of this exact method, more important, what type it returns, or gist / pastebin your L2Skill class. (You can click on the method and press F3 and eclipse will lead you to the declaration, thats what i want to see)
  2. You cannot do L2Monster.getClass() , but you can do L2Monster.class The difference is that instanceof might also return true if monster is raid boss (e.g. L2RaidBoss) which extends L2Monster Also instanceof allows null, wouldn't throw NullPointerException if activeChar is null p.s. getClass() is not static method, requires instance of Object in order to access
  3. Well it wouldn't make sense to return player's effects from a skill instance, or would it? :troll:
  4. https://www.assembla.com/spaces/L2jFrozenInterlude/subversion/source/HEAD/gameserver/trunk/head-src/com/l2jfrozen/gameserver/model/L2Skill.java#ln3133
  5. Isn't method describing itself enough? :D Skill -> Get Effects Which basically should means list of all effects attached to the skill, makes sense isn't it? :D Regarding screenshots you may wanna show us that method Go to declaration and show screenshot there, i suspect you either imported wrong L2Effect or its not returning array/list
  6. Look again what's on the picture :troll:
  7. That is pure XML, not even structured properly.. I was talking about some real code i mean Java, how can u declare yourself 'the best l2jdeveloper' and showing xml, you gotta be messing around.
  8. So far i barely see your name in the forum, show us some code let us be the judge of who's the best. By some code i mean some code that u wont code right away some you've done already.
  9. Opcode changes occurs mostly when new packets are added in-between other packets because all the packets are stored in array, their index is their opcode and when new packet is added in-between those indexes gets shifted
  10. Didn't you started a project like week ago?
  11. You could make it pressing right click on augmentation stone, then show some message to client to right click desired item to augment also. Meanwhile you can send ItemList with only available items to augment (Optional could be ConfirmDlg to confirm if you want to replace existing augment). Upon successful/failed augmentation send back ItemList If you were using any newer chronicle you could use ExChooseInventoryAttributeItem
  12. Decompiling source just to take a feature is stupid, you'll loose much more time then to actually code it from the scratch. But giving people compiled server is not cool, those who do that cannot really feel secure without having the source so they can see all, i'd recommend you to make your features on top of existing open source project. An example can be plugins system simple SPI, a simple jar drop on libs folder would be enough, plugin will have access to the source with listeners u may do everything, also feels more clean, you can even obfuscate it, make some ip auth or whatever pointless restriction.
  13. This is funny, you know all the work done in Ertheia branch is done not by l2j team but mostly by me and Sdw later Nos joined and St3eT i don't know why u are speaking of things we are taking since we never took anything from anyone unless it was shared and matches our criteria (Which often is not) . Our private branch is still following what we did in Ertheia branch, we still don't take anything from anyone not even from l2j, we didn't sync anything because we don't have to we are fine doing it by our selves. Also i never forget to tell anything we even have public website http://l2junity.org with commits and stuff
  14. We gave you basic clean Ertheia, there are bugs but noone said its production ready, its dev version, the geo issues are not in this branch. The only serious bug i remember is in ability points system there is possibly of learning skills without spending points on skills in previos rows, which is easy to fix in case you will use that feature. Obviously items and skills are not a problem if he is going to make gf server.
  15. We were L2J developers after all, you should be suprised if we didn't base it on L2J.
  16. I got only one question: How is Themida related to RSA? :)
  17. I am agree that everything's bypass-able, but here he isn't claiming that he prevented ALL POSSIBLE BOTS. Don't forget that this requires high-level reverse engineering skills, and not many has them especially l2 players. The most bots blocked the better, nowdays players cannot play without having a bot, which is sad, thats why someone has to do something about that and in this case @Szakalaka did. Cause once lameguard died and all bots started to bypass it all server admins fall into a problem and there wasn't any alternative!
  18. I ain't flaming anyone i am just saying my experience with this source over the last few days.
  19. The last thing that source could be is "good", looking at it last few days i had to make huge cleanups and major reworks to get most of it working as it should. I can't count how many NPEs i've fixed, i can't believe that was even working, not sure what u call stable at all, while your console is like a christmas tree. Its so fragile, you touch one thing, 10 others gets broken because they work on some dark magic that only it's creator knows (A thing we spend years in l2j to fix) Hardcoded stuff all around the code, very poor documentation. The thing that pissed me off mostly was Extractable itemhandler. That -> https://gist.github.com/UnAfraid/2cf74367704ae27a0b16 Extractable skills doesn't work at all. Not to mention that cross game/login database connection shit that you made, what if login server is on different server like in my case? Too lazy to make it right or you simply don't know how?
  20. I know because i have it, Synerge ships that system into a jar there's no way he could have the sources, or at least not all of them.
  21. Do you realize that the code inside the jar does not contains any comments. So that means it cannot be under such license?
  22. And how that makes it yours? Its interesting how u find that 'GNU' license inside compiled source into jar.
  23. This topic's purpose is to let people who still use l2j based servers knows that we are heading towards Ertheia version. Whoever wants to contribute is welcome Whoever wants to just to use it feel free We don't seek slaves or "servants".
×
×
  • Create New...