
Zeeyo
Members-
Posts
132 -
Credits
0 -
Joined
-
Last visited
-
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Everything posted by Zeeyo
-
51 days ago it didn't.
-
3rd PRofession Skill Enchantments
Zeeyo replied to mackry's question in Request Server Development Help [L2J]
Vortexes are not done in contrary to what's written there. The magic levels for enchants are missing. -
3rd PRofession Skill Enchantments
Zeeyo replied to mackry's question in Request Server Development Help [L2J]
If you take a look at L2JFree repository, you will find all missing skill enchantments, both for simple and 3rd class skills. Just don't forget to also check the enchant_skill_trees.sql file. And another note: copy-paste will not work, because the magic level (essential thing for offensive skills/skill enchants) is calculated core-side. -
XML is a strict standard. Such things are FORBIDDEN and will NEVER be allowed in XML (in contrary to HTML): <enchant1for> <for> <effect count="1" name="Buff" time="1200" val="0" stackOrder="#ench1mp" stackType="MPregen"> <mul stat="maxMp" order="0x30" val="#ench1mp"> <using kind="Bow"/> </mul> </effect> </enchant1for> </for> Also, randomly stashing '</add>' will not do any good, so ditch such things: <for> <effect name="Buff" time="10800" count="1" val="0"> <add order="0x40" stat="reflectDam" val="20"/> </effect> </add> </for> <enchant1for> <effect name="Buff" time="#ench1time" count="1" val="0"> <add order="0x40" stat="reflectDam" val="20"/> </effect> </add> </enchant1for> 'cond' is not a child node of 'for'!.. It's in same hierarchy level, so such things are invalid: <for> <cond><using kind="Bow"/></cond> </for> Another example of hierarchy ignorance: <effect count="1" name="Stun" time="3" val="0"/> <using kind="Shield"/> And here's the valid file: http://pastebin.com/m4494630
-
No need to start nuking a fly with several thermonuclear weapons at once. Considering you don't know about l2j much and you will waste performance by performing useless queries, a 10k RPM HDD(s) on a RAID is a must. You'd better be off with 15k RPM or SSDs, but these cost really much. A processor must have at least 2 hardware cores (HT or other virtual thread implementations will not suffice) and in this case speed must be no less than 2.5Ghz. If you have more cores, 2Ghz processor(s) will suffice. Network card must have integrated load balancing and hardware acceleration. Do not use some cheap integrated sh1t. It is NOT WORTH IT, because it will force processor to do the card's job. RAM is cheap so get as much as you can get after buying other components. If you can, buy something better then DDR2 200Mhz (that means 400Mhz), but that will suffice.
-
As said by various people, including mods, you should know who you want and pm them, because looking for team openly will cause various noobs and fake GMs to flood you with crappy english messages. Also VPN is a good choice..for a website. I don't know what stats do you have but a dedicated server bound to real hardware (not some limited sh1t) is much better for L2 servers.
-
A quick fix when under DDOS attack
Zeeyo replied to AnonImatOr's topic in Server Development Discussion [L2J]
Yeah, ban all the inet cafes from your server! Go on! I've met many admins who think that limiting 20 conns/IP will save the world, but they don't know how stupid that sounds. And don't forget that some ISPs use LAN strategies where they literally bind a city to an IP (they bind each customer to a static LAN IP). Ofc, it's not common in Greece, where ISPs act like yeah, we provide dynamic IPs, so we wont investigate any spam/dos/worm activities done by our customers and provide fake internet activity details to the law enforcement agencies. -
[Share-Update]L2JDreamCode Compiled Revisions
Zeeyo replied to Apithanos's topic in Server Development Discussion [L2J]
Git is just so much more better for storing common folder history. -
That's java and not python. st.getPlayer().setExp(0) st.getPlayer().getStat().setLevel(1) If you don't unset exp to 0, the exp bar will show things like 4033.16% or 8126.53%.
-
[Share]Usefull site with retail skill description
Zeeyo replied to Nairoby's topic in General Discussion [English]
Would be nice if it contained more than other sites. Missing lvl 9 & 10 clan skills was a real letdown. However, since it's in development, I'll have to say a nice site. Will be a good replacement to l2wh & pmfun. -
You didn't check the link I gave you. It's LameUpdater rev 97 (same thing as you shared) and it's FREE it costs 0.00$ + 0.00$ shipping/download costs. So you still insist it's LameGuard? You really should be infracted for plain lying and this thread should be moved to junk.
-
[Guide]Navicat Part 1 Accounts
Zeeyo replied to Devangell™'s topic in Server Development Discussion [L2J]
You should use logic and store unencrypted password somewhere when you get it (when account is created, or, if you have no other choice, when someone tries to log in to the account). Anyway, by default, passwords are B64 encoded SHA1 encrypted hashes. It's a one-way encryption, but recently they discovered collisions in the algorithm, so you should search for up-to-date SHA1 cracker (brute force or xieve), or use rainbow tables. However, if you weren't an idiot used logic, you wont ever need to decrypt the hashes. -
Read my reply... This is freeware software, LameUpdater (don't believe it? check this public thread: http://www.l2jfree.com/index.php?topic=1484.0). It doesn't protect you in any way at all, even from dual-boxing. Thus the thread should either be renamed or the author should be banned (oki, too harsh) infracted for fake shares.
-
It doesn't contain a virus (according to NOD32 d4774); but it's not LameGuard, it's LameUpdater... And I think LameUpdater was/is free, so the talk about 150$ is a fake.
-
http://trac6.assembla.com/L2J-Edelvez/changeset/123 or, more specific http://trac6.assembla.com/L2J-Edelvez/changeset/123/trunk/Edelvez-GS/java/com/edelvez/gameserver/network/clientpackets/EnterWorld.java Conclusion: This serverpack will die in less than 3 months. Sorry, but I just had to point it out.
-
[Hidden Content]
-
[Help]Maven plugin in Eclipse problem
Zeeyo replied to Cloud's question in Request Server Development Help [L2J]
If you wouldn't be so stubborn and used the first_time.bat (or, if you already did the checkout, update.bat) script instead of trying to do magic in command prompt without understanding what are you doing, you would have already compiled it. For example, WHY? do you changedir (cd) to subversion client installation dir? Could you please point me where it asks for that in the guide? To verify if subversion is installed, you just open the command prompt and write 'svn --version' at whatever directory is shown. If it doesn't answer properly, you re-do the guide. -
[Help]Maven plugin in Eclipse problem
Zeeyo replied to Cloud's question in Request Server Development Help [L2J]
Cloud, do you think skipping guides is a good solution? Don't be so stubborn, just follow the guides. Don't think in a way: "hey, I know how to compile, so I'll just read a bit and do what I think is right to do". First, you tried configuring eclipse, I assume you tried to follow http://www.l2jfree-users.com/l2jfreeusers/posts/list/514.page BUT it specifies you MUST have completed JDK and SVN guides, which you ignored. Then you tried to follow 'THE GUIDE', but you still ignored JDK & SVN guides. YOU MUST APPEND %JAVA_HOME%; AT THE BEGINNING of 'Path', not at the end. -
EDIT: sorry, I was thinking you've been replying to my post and not to the thread owner's. You don't want to remember that you cannot connect to l2jfree gameserver without completing the login procedure through the login server. That means: You must have a valid account per each connection. You cannot flood due to the flood filters inside mmocore (let's not go into details here).
-
[Help]Maven plugin in Eclipse problem
Zeeyo replied to Cloud's question in Request Server Development Help [L2J]
You can install the Maven Integration for Eclipse by using the following update site from within Eclipse: http://m2eclipse.sonatype.org/update/ -
You don't want to remember that there's been IOFloodManager in l2jfree for ages (like since Kamael P1), which refuses to accept packets either if too many of them are sent or an absolute limit (of all packets) is reached. And it, unlike the logging, doesn't depend on opcodes.
-
Both l2jserver and l2jfree had quick-hack fixes quite shortly after the tool was released... Now both packs cleaned them up, that means soon every pack will have it fixed... If you are wondering about l2jfree, Login and GameServer: 7675, 7676, 7679 on 18 December 2009, 12:45:03 +0100 (21 days ago) And currently there was a mmocore rework in l2jfree, which is still protected against serk's tool.
-
[Help]Maven plugin in Eclipse problem
Zeeyo replied to Cloud's question in Request Server Development Help [L2J]
@Onix: no, that will not fix the problem. Don't worry about it... Just use this guide: http://www.maxcheaters.com/forum/index.php?topic=101678.0 Step 2 in particular. Don't forget to close and reopen eclipse after that.