Jump to content

Setekh

Legendary Member
  • Posts

    2,510
  • Credits

  • Joined

  • Last visited

  • Days Won

    2
  • Feedback

    0%

Everything posted by Setekh

  1. Make sure u use capital letters where it needs too. We cant use recaptcha since something is amiss at our datacenter, and we're trying to sort it out. Email validation is also off
  2. My sister came home from UK, and we are mosty drunk >.> 1 in 2 days fixed it.
  3. I was on ur pc, if i remember correctly, also try to be more online in the morning.
  4. Currently making a tutorial, and tips and tricks for maven.. more like a FAQ with issues.
  5. im certain you have this: If u dont at all, please download a proper IDE which is this: http://www.eclipse.org/downloads/packages/eclipse-ide-java-developers/keplerr NEVER! And i mean NEVER!! Download Eclipse classic, thats for modders, not for a java developer. It misses all the tool sets, the only thing it has is java editing, and thats all
  6. urs :P make sure u update ur maven project, like so Then select both projects Data and Server and then click on the check box with force, like so: http://i.imgur.com/PFYWrPX.png[/img] U did something wrong, in any case do what i said in this post. Also make sure the project build path is: http://i.imgur.com/HXUI9fn.png[/img] If u dont see the srouce folders, it means u didnt checkout correctly. You're missing two files, .classpath or .project, or maybe you checked it out as Project and not Java project, make sure u check it out as a Java Project! :)
  7. its fully opens source, you have access to make your own clone, i dont mind :P
  8. I never read anything regarding programing except some papers about design patterns and MVC(model view controllers) for my javafx/GWT apps at work. Anyway enough spam, we can do that on archid's forum.
  9. I said it quite often in the past, anyone can join the project if they wish to learn and enrich their knowledge, no one discriminates here. Belive it or not Matim joined archid in 2009 i think, and his first commits were 2 voiced command handlers XD I don't claim that anything from archid rubbed off on him, he did that on his own initiative, and look at him now he has a 2D game engine for android XD If anyone has at least the tiniest of ambition to stay on the pack and learn from me, he'll have a lot to thank for in the future, just saying :P
  10. First off you wont need to change packs, archid works together with pes :P We'll brain storm ideas and sync, same gos with every pack, if they have an idea they can just suggest it and we can make it work. Thats whats open source, its not a battle between packs, collaboration is key here. I aim to change the mentality of l2j pack owners. that is also very true. Thanks, and about ur previous question, i am to make customs developers into creators for this pack, so while the core aims for our style of retailness, people can create their own content if they wanna learn. With out getting the core dirty
  11. It's something personal. Now seriously people i need testers and users, lets get this shit on the road. I cant keep adding stuff with no idea of the current bugs, i'll be in a bigger mess. We fixed up the webhost, now reCaptcha wont act up and email service is on again, plus a few optimizations.
  12. I'm starting to acknowledge the fact that I truly forgot maxcheaters. I'm giving people too much credit, respect and trust where its not due. How stupid could i have been to believe that people in this generation of mxc users (since a generation is measured by a couple of years). Now i understand why Interpid is on fire so often. First off, let me address Boorinio, You're lying to yourself if you state that you wish me good luck, your post is a cry of despair, walking over my trust and respect towards you by posting a private chat log. That should be kept only by you and me. You stated it like I am mentally handicapped and i should be tossed aside, I can handle my own fucking actions, don't bother yourself with me! Maybe before posting you should of read the previous posts, I already stated my unavailability towards mxc and l2j in general. Personally i hate mmos and specially lin2age, but what i really like is L2J, it's always been like that, I learnt programming on a L2J server and altering the code and enhancing it is a kick sometimes for me, re-reading it off the timeline. If i ever left behind something it was caused by the fact it wasn't mine or turned out to not be mine anymore, like what happened in 2010 with archid going private and with ur project. Yeah what i said there in "your posts of quotes" was true, i wanted maybe to prove something to show new bloods what an old dog can do, since I've been seeing a lot of idiots flapping their gums about stuff they have no clue about. I also stated in the first post of this topic that: But, regarding something that is mine, i made a commitment, you dont know me enough to say "unfortunatelly setekh is "unstable" about his decisions and he has proven it to me both personally and to his community". You're a fucking kid, the fuck do you know about me to call me unstable, i have my reasons behind each and every action i take. If i left hellas and said its my fault, know that it was lie, for people i admire i take in their bad decisions/failures, you're a poor leader and you got much to learn about the real world and how to be part of a community, i cant believe i actually gave you that much trust and credit. Also I doubt you were an archid fan, an archid fan could be called Tryskell or Szmajso. While they saw the pack's real potential after the restart you sought out the customs that the old pack had. And don't insult in any way Coyote, he is 10 times the man you are or ever be. You don't walk over your own balls. Acis and Archid are way different, they aim for true retailness, while I do too my pursue in doing that is innovation with the latest of technology and ideas like: Management tools for the assets which will all be binary json(or plain json, it will be a build feature, goodbye xml), Asset Management systems, Dependency Injection/Management that also is handling at a global level event driven listener system which in it's abstraction can be used for everything from restriction engine to a custom event system and so forth; I named it Corvus Engine and its current version is 4.1 - Tainted for this pack. Here is an example of how the events are triggered: A static index to keep things in check https://xp-dev.com/trac/l2jarchid/browser/l2jarchid/trunk/Archid-Server/src/main/game-core/com/l2jarchid/services/ArchidIndex.java A use https://xp-dev.com/trac/l2jarchid/browser/l2jarchid/trunk/Archid-Server/src/main/game-core/com/l2jarchid/gameserver/ai/L2PlayableAI.java#L92 When that hits Corax will go through the registered listeners till it finds a stop Here is an example of a listener for simple attack public class SimpleAttackListener implements CoraxListener { public <T> T listen(int eventKey, T defaultValue, MelloriObjectBuffer buff) { switch(eventKey) { case ArchidIndex.AllowAttack: { /** Args: Player Target[L2Character] Default: True **/ L2Player player = buff.get(); L2Player target = buff.get(L2Player.class); // it can cast too, but the trick here is that target will return null, if we use the buff.get(cast) instead of a class cast exception, // doing so we will know that the target is or it isnt a player, so if it was a mob, its null and we ignore it, if not then we check if its a foe. if(target != null) { if(target.isRed() && player.isBlue()) { // we force true, so other handlers wont mess with us return true; } else if(target.getTeam() == player.getTeam() { return false; // We dont attack our team } } } default: return EventMonitor.Nothing; // Nothing triggered, we pass } } } With this, you can imagine how portable it can be, inside ur dp or whatever, and ofc making a killing spree system or war zone like hnoke's DM event, with this is a walk in the park XD But i wanna note that my current goal is to move everything that is interlude from the core and move it to the DP making the engine abstract so it can support numerous datapacks, so with the change of a datapack you'll have a c5 - c4 server. And i wanna use this system along side the Asset Manager, and make a plugin management system where the user will never have to change codes inside the core or even compile a pack and have plugins with events and features directly on our website. Doing so i hope we can make less stupidly bugged lineage servers. I have a lot of plans i just need people to report bugs and use the pack. Lol, you're thelasthero?! GO FUCK URSELF! XD
  13. Commited rev 4: Mysql connection fixes. Updated SVN client. Cleanup. Nightly builds: Current nightly: http://nightly.l2jarchid.net/nightly/ (Will change) Latest: GS and DP
  14. We'll just have to wait and see then XD Also guys, knock it off with the flames. ATM: Fixing up webhost, since it doesn't send mails for some reason. Then the forum
  15. That repeats in every chat we ever had XD Also i still am working on my game engine. I know how to manage my time between projects :)
  16. Didn't mean it like that, damn it lol! I'm listening to this song: And the word poped to mind. Thanks for the warm welcome everyone. PS about the curse, u have no idea >.> how much u influanced me durring our short discussions on msn just before archid dying XD I always liked you.
  17. Quoting forum: Some of you may remember l2jarchid as far back as 2008. We ware literally top 3 first interlude only projects at the time, since then our idea has been passed on, giving birth to new projects like L2Dot, scoria, and inew ones like Acis; so forth. In 2010 archid stopped development, we've been private for a while which led to our demise, propaganda led by some ignorant people made us so depressed we just said "-beep- it". And that was the end if it. Since then I am cursed to return to l2j every middle of the year. In the month of August 2010, archid went silent, and since then every August of a year, something manifests in me and i desperately want to continue l2j. I am sure this is a psychological factor, and till i dont finish interlude or not find someone dedicated to pass the project on, i'll most probably never stop. And i hate that. So even tho, most probably I am not gonna find reliable people to continue the project with, I'm gonna relay on YOU, the average joe to report bugs or submit codes. I want to make this project a real server project, with tools, using the latest of technology. Thank you for reading. Website: http://l2jarchid.net Trac: https://xp-dev.com/trac/l2jarchid SVN: https://xp-dev.com/svn/l2jarchid Nightly builds: Latest: GS and DP SVN and Trac will be moved to a vps soon. I don't like xp-dev. The website will have a cms with plugins and highlights, since this pack will be a plugin/creator friendly pack. If you had a minecraft server, you know what i'm talking about. PS: I'm really ashamed of this small post, i have a lot to discuss about the issue, tho right now, i have the most massive hangover i had all year, can't really think straight. I am truly sorry.
  18. U guys suck at channels and threading. Datagram = (unreliable connection - that's its naming, but its a good thing!) simple minded. Connection - W <-> R, end; Perfect for telnets. Or command servers. TCP = (Transport Protocol) bad for such a thing, you need to maintain a connection, that is always vulnerable. You guys should check out SocketChannels and Datagram channels in the nio package. Edit: Dat http://docs.oracle.com/javase/7/docs/api/java/nio/channels/package-summary.html
  19. That's why javafx exists. >.> There are so many options for making a gui in java, u you wont believe it. Also, you can embed ur app, into a standalone with Avian / IKVM + Mono. (In java 8, we'll be doing that on build, with no third party software, that will be awesome.) Unrelated, i prefer mono's GTK then VB any day.
  20. Its a standalone. It doesn't use the old one. He coded the connections from scratch.
  21. Cool, thats how a telnet should be, using datagrams. Tho, i would suggest going even farder and make a handler system for it :P Check this out: https://code.google.com/p/java-universal-css-engine/ Will make swing building a breeze, if ur into css.
  22. This topic is like a UNICEF support application registry XD Well starting to look like it.
  23. Yep. http://www.oculusvr.com/ Also theres a VR pad, that emulates keyboard and mouse movements along side oculus rift, so u can really feel in game :P Omni + Rift = True VR (TF2)
  24. Depends on which part of the world you are. PS: The fuck is my level? Fairy queen?? The fuck happened? And why is it so ugly >.>
×
×
  • Create New...