-
Posts
112 -
Credits
0 -
Joined
-
Last visited
-
Days Won
2 -
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Everything posted by UnAfraid
-
Help Hallo Guys Someone Can Help Me Please!
UnAfraid replied to Rydar's question in Request Server Development Help [L2J]
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) -
Help Hallo Guys Someone Can Help Me Please!
UnAfraid replied to Rydar's question in Request Server Development Help [L2J]
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 -
Help Hallo Guys Someone Can Help Me Please!
UnAfraid replied to Rydar's question in Request Server Development Help [L2J]
:rage: :rage: :rage: :rage: -
Help Hallo Guys Someone Can Help Me Please!
UnAfraid replied to Rydar's question in Request Server Development Help [L2J]
Well it wouldn't make sense to return player's effects from a skill instance, or would it? :troll: -
Help Hallo Guys Someone Can Help Me Please!
UnAfraid replied to Rydar's question in Request Server Development Help [L2J]
https://www.assembla.com/spaces/L2jFrozenInterlude/subversion/source/HEAD/gameserver/trunk/head-src/com/l2jfrozen/gameserver/model/L2Skill.java#ln3133 -
Help Hallo Guys Someone Can Help Me Please!
UnAfraid replied to Rydar's question in Request Server Development Help [L2J]
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 -
Help Hallo Guys Someone Can Help Me Please!
UnAfraid replied to Rydar's question in Request Server Development Help [L2J]
Look again what's on the picture :troll: -
Discussion Server Packets (Information Only)
UnAfraid replied to AccessDenied's topic in Server Development Discussion [L2J]
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 -
Didn't you started a project like week ago?
-
WTS New Augmentation System (Enchant-Like)
UnAfraid replied to An4rchy's topic in Marketplace [L2Packs & Files]
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 -
Discussion L2Jesios - Truly Back, Truly Yours, Truly Free
UnAfraid replied to Elfosass's topic in General Discussion [English]
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. -
Project Huge Ertheia Pridelike
UnAfraid replied to xxdem's topic in Server Development Discussion [L2J]
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 -
Project Huge Ertheia Pridelike
UnAfraid replied to xxdem's topic in Server Development Discussion [L2J]
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. -
Discussion Infinite Odyssey Live Server Question
UnAfraid replied to Malossi's topic in Server Development Discussion [L2J]
We were L2J developers after all, you should be suprised if we didn't base it on L2J. -
WTS Random Codes/features For High Five Servers. Dev Work Too.
UnAfraid replied to Nik's topic in Marketplace [L2Packs & Files]
Lets say there is no client side :D -
WTS Client Patched&update Services
UnAfraid replied to l2inplay's topic in Marketplace [L2Packs & Files]
I got only one question: How is Themida related to RSA? :)- 2 replies
-
- ertheia
- infiniteodyssey
- (and 4 more)
-
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!
-
WTS L2Age / L2Woa - Source - Development, Services [H5]
UnAfraid replied to Kama3a's topic in Marketplace [L2Packs & Files]
I ain't flaming anyone i am just saying my experience with this source over the last few days.- 133 replies
-
WTS L2Age / L2Woa - Source - Development, Services [H5]
UnAfraid replied to Kama3a's topic in Marketplace [L2Packs & Files]
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?- 133 replies
-
Special Community Board For High Five
UnAfraid replied to HaddWik's topic in Marketplace [L2Packs & Files]
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 replies
-
- Community Board
- L2J
-
(and 3 more)
Tagged with:
-
Special Community Board For High Five
UnAfraid replied to HaddWik's topic in Marketplace [L2Packs & Files]
Do you realize that the code inside the jar does not contains any comments. So that means it cannot be under such license?- 21 replies
-
- Community Board
- L2J
-
(and 3 more)
Tagged with:
-
Special Community Board For High Five
UnAfraid replied to HaddWik's topic in Marketplace [L2Packs & Files]
And how that makes it yours? Its interesting how u find that 'GNU' license inside compiled source into jar.- 21 replies
-
- Community Board
- L2J
-
(and 3 more)
Tagged with:
-
Project L2Jserver Ertheia Branch
UnAfraid replied to UnAfraid's topic in Server Development Discussion [L2J]
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".