-
Posts
5,365 -
Credits
0 -
Joined
-
Last visited
-
Days Won
67 -
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Everything posted by Tryskell
-
Project is project, it's supposed to never end. And that's not : - making (as "dev") more projects from nothing, walking on the exactly same path some packs already did; - waiting (as user) in the hope you can use it one day; that will help. Packs need help NOW, not AFTER. I need all possible retail infos when I implement something. Those infos, I search them on Inet and that take a lot of time (around the same time than developing it). Anyway continue making threads and wait, none project will be ready like that :).
-
Did you simply read my project's timeline before speak ? I (unfortunately) read your, and I speak accordingly. There's nothing to be jealous reading your timeline. Well to be honest, you're a true Java warrior, and you can learn me something : I still don't know how you commited a BLANK commit (which was for some months my signature). So far I never insult you, and when my position about that question (L2J IL pack) can be "tricked", I never say to join my own pack, but join EXISTING projects (so far the most active are mine and frozen, not my fault lol) according your own beliefs. Well after if you want to make a fail pack used by no one, consider continue that way. And that's not even insulting you saying that, I smell it like a hungry troll smells hobbits. @PwnedTheGod™ just googling it (lineage 2 free to play) you can find many infos, even on other gaming websites. I first found it on a well-known french gaming website, then found info directly on the official website. I guess L2 forums must speak about it too.
-
http://trac.assembla.com/L2jOff-IT/timeline?from=02%2F18%2F10&daysback=90&changeset=on&update=Update PS : I saw your sig, you're Adryan and that's the good timeline. What to say... Nothing special on the timeline :P. http://trac.assembla.com/L2jOff-IT/changeset/190 Some funny fixes. If in "2k timeline" (and I see 300 commits personally), there's 30% of such commits, well, think better to join existing projects (frozen or mine depending of your own pack's PoV). Gl anyway. PPS : I already got difficulties to find people, so I don't think you will do better than me about the team recruit :P.
-
Nope, my pack as L2JFrozen are well implanted in IL pack background. And btw helping one pack doesn't mean the other pack is ". I use L2JFrozen user's contributions when they are decent, aswell as bug reports (as unfortunately, my forum isn't so populated than Frozen ones, at least I got less forum moderation to do lol). Shyla commited some of my commits timeline (just to quote them : Partymatching, MMOCore and I must forget). I already said to Shyla (3 times ? At least each time he asked me to join Frozen lol) we could work together on some stuff. Nothing has been made so far, so I just work in my side and eventually leech on each other if decent code is found (for my part). To be honest and with time, there are less and less possibility to work on similar stuff (at least the big part can be done, but details is particular according of each pack). I won't do any concession to stop aCis and go on L2JFrozen. Frozen needs things I already did, making them twice is a pure waste of time for me. Frozen is popular (inheritating naturally Scoria users population), aCis try to give professional stuff. Ppl chose according their tastes, that's all :P.
-
Skill Learning With items
Tryskell replied to DONALD TRUMP 2016's question in Request Server Development Help [L2J]
So far, and correct me if I'm wrong, you can only touch to numbers. As SP, adenas is clientcoded. You can only "dynamically generate" numbers of SP/Adenas, not the type. Serverpacket hasn't any infos about type, only requirement. -
Patching a server is like beginner's state. The main proof is you don't know what to do to resolve your issue (and 99% of issues are resolved by the same way if you got the good methodology = Eclipse search tool && CTRL + left click on method names to open them fast). I gave you tracks in previous posts (method names to check and eventually logging them to see if they're correctly used), do whatever with.
-
Don't forget the cup of tea, with 3 sugars and a cloud of milk. Oh and if you're angry with my answer you can read rules. You can read that too.
-
[HELP] Spawnlist heading field
Tryskell replied to dpbBryan's question in Request Server Development Help [L2J]
Well dunno which pack you're using, my calcul came from my IL pack refactored using L2J Freya (8 months old). Seems you use old IL not refactored. -
Well don't hope to resolve such issue if you got 0 knowledge about java. Use Eclipse search tool to find methods I gave names, and compare in a first time with actual L2J. If all is fine, try to put on those methods some log to debug it (just test1, test2 are enough to see if methods are correctly reached). Btw update to latest Freya, and eventually post a ticket to L2J directly if you use already the latest.
-
[HELP] Spawnlist heading field
Tryskell replied to dpbBryan's question in Request Server Development Help [L2J]
Well, I confirm with a player you can obtain 65303 and such number. I'm bad on math so don't speak of polar, sinus or cosinus :D. On L2Npc you got such formulas : mob.setHeading(Rnd.nextInt(61794)); which means too the number is around 60k max for NPC too. You can too simply check spawnlist.sql and check what is the biggest heading written inside. Lol. Btw, my formula about heading is as following : public final static int calculateHeadingFrom(int obj1X, int obj1Y, int obj2X, int obj2Y) { double angleTarget = Math.toDegrees(Math.atan2(obj2Y - obj1Y, obj2X - obj1X)); if (angleTarget < 0) angleTarget = 360 + angleTarget; return (int) (angleTarget * 182.044444444); } And guess what, 360 * 182,044444444 equals 65536. -
Verify content of Shutdown.java, about what is saved. You can check also derivated methods, such as saveCharToDisk(), store(), storeCharBase(), and so on. Normally basic stuff such as character saving is made on storeCharBase(). Verify if the related SQL query (named "UPDATE_CHARACTER" normally) save all essential infos. You can debug it too putting some log.warning(""), to track if save is correctly made.
-
[HELP] Spawnlist heading field
Tryskell replied to dpbBryan's question in Request Server Development Help [L2J]
An easy way to spawn something with good heading is to use //spawn command ingame. If you target nothing, it will spawn according your actual heading. About heading, that's just degrees, and so far (from what I rem) that goes from 0 to 65000. Following that rule, you can expect the following to be true. 32500 (back) 16250(right side) 48750 (left side) 0 65000 (face) If the max heading value isn't 65k, well do changes according... You got the point. About what direction is supposed to show 0 (east west north south) to be honest, I have no idea. Just test ingame. PS : config.developer setted to true show your actual position (and heading). It can be useful to you if you don't want to use //spawn. Regards, Tk. -
For a LAN, any pack is fine. Next revision I will correct skill success formulas, so PvP should be enhanced, and no need to tweak. L2JFrozen got custom to edit all (cause of big original unbalance, feel complains about gladiators oped). About customs, both packs got customs... In one pack you have to apply them, in another you just activate them. It's only a matter of what you want to do... Basically both aCis and L2JFrozen aren't (will they do one day, basically ?) ready.
-
wireless problem
Tryskell replied to Poutsodrigkos's question in Request Server Development Help [L2J]
Shader problem yup. Desactivate shaders and/or update directX. -
If that continue, I will have to make fake accounts to vote for Frozen.
-
Use space bar next time :P. As you told yourself, L2 IL is outdated and doesn't need anymore more "packs" or "clans". Better put all your efforts in one pack which will succeed than 10 packs which will fail (they will badly leech each others and finaly will break by their own stupidity). Added to that, allanacantara haven't reason to begin a pack (some exist already), nor got the experience to do it (project announced then near immediately "closed" show the seriousness about the project). IL doesn't need a fix, it needs a big rework. That's not helping ppl, nor existing IL packs, to announce there's a new pack. And except if allanacantara is better than ppl currently deving on IL (what I trully doubt, without entering in the "I'm pro u noob" parrallel), there's, I repeat, no reason to BEGIN an IL pack. Still he can help one or other pack without doubt, and that will be APPRECIATED help. Finally - and you don't seem to read L2 news - L2 goes for a Free 2 play economic model (freemium, like City of Heroes) in some times, so it's currently totally useless to dev a freya or hi5 pack. New chronicles are doomed (L2JFree big rework, what the point to still going on a L2J if official goes free), the only private servers where people would like to play after freemium transfer will be old chronicles. I agree about the childish behavior of MxC, but hey, 40% is little kids (counts the 16y old) and 20% are greeks (15% you can count them as little kids, ofc there are exceptions). I agree too most of ppl speaking on that topic hasn't position/experience to criticize allanacantara's work. Thinking you(used as a general term) will do better than actual packs is just like fighting a Balrog without being called Gandalf. That's pure madness :P. The only possibility to reach the level of those packs is to copy paste their timelines. What's the point to do that when in that amount of time you could help the leeched pack to move on ? Well I have given many reasons to don't begin a pack at those times, and I guess, without even reading my previous answers, it still goes in same sense.
-
l2j c4 server need some help
Tryskell replied to Valve's question in Request Server Development Help [L2J]
Precise more than "nothing happens" :P. In that order : - Does your LS can see your GS without problem (connected to blabla) and vice-versa ? - Did you verify firewall/router ports ? Antiviruses can block aswell communication. - Problem to log on ? If yes, any comment on GS (problem of revision). Does auto account is enabled ? - Do you see servers list ? (means you are able to reach Login server). If yes, what about ping / server availability (often the reason is due to missing opened ports. -
[Request] NPC Scheme Buffer Interlude
Tryskell replied to gRfd`'s question in Request Server Development Help [L2J]
Ahlala my favorite businessman :D. Even helping ppl you put link to forum, haha. *ilookipooliloo* -
Skill Learning With items
Tryskell replied to DONALD TRUMP 2016's question in Request Server Development Help [L2J]
An itemhandler with addSkill(skill, true). skill has to be a L2Skill. True is necessary to store the skill to be permanent, if you want a temporarly skill, use false. Use Eclipse search tool for addSkill occurences (146 on my IL pack so far). Post your piece of code if you're blocked at implementation. If you got nothing, well, try harder. Regards, Tk. -
If anyone want L2J server look this!!
Tryskell replied to Necro's question in Request Server Development Help [L2J]
This is what this section is made for, except all problems - and eventually answers - are shared to all, so people have only to be clever and use search tool to find what they want. When I don't like elitism, I discourage to anyone making his own server, it has no uses, no goals, no future in 90% of cases. Better populate the few existing servers than be proud killing Baium in 1 shot with weapon +65535 (and then posting videos on Youtube - unfortunately, yes, I saw some). -
Source aCis - another CRAPPY interlude server
Tryskell replied to Tryskell's topic in Server Shares & Files [L2J]
Fiat Panda 2003 or Fiat Panda 1980 ? :) -
My eyes are bleeding when i see such words.
-
Of course of course !!!