Page 1 of 1

Some Questions about L2j server Pack

Posted: Sun Jul 29, 2012 6:32 pm
by KingSton
Hello,

It's first day when I use L2j server pack ( Latest, downloaded with Eclipse, Interlude ), it is different that in some other packs, so I can't find places, where I can configur something.

First of all, where actualy I can configurate Items. For example, "stackable" ability ( I found it in database, but when I make changes, it didn't work ), Mana potions effect ( how much mana will be restored )...

Secondly, I found one trouble with Drop rate. I read it in this forum posts, searched for information, but nowhere were answer. Problem is, that when I set Drop rate for server ( drop for monster in normal ) this rate is understandable like raidboss drop rate too. It is not a big problem, but when Grand RaidBoss drop more then 1 jewelry it is trouble. So, where I can fix Grand RaidBoss drop, that Bosses allways will drop 1 jewel ( I also found "drop" section in Database, but from there it is maybe imposible to fix).

Sorry for maybe stupid questions, but I worked with different pack, where configurations also where in different place, just understand me :)

Re: Some Questions about L2j server Pack

Posted: Mon Jul 30, 2012 6:50 am
by jurchiks
"stackable" should be in database, mana effect in skills (afaik 10000-10100.xml, but you can search in Eclipse for "Mana" in those xmls).

Grandboss drop - check their AI?

Anyway, IL is known to be one of, if not the the worst l2j pack ever, so yeah.

Re: Some Questions about L2j server Pack

Posted: Mon Jul 30, 2012 7:23 am
by Asmodaius
If you open the sql table 'droplist', you can find the drop data inside.

You must modify the field 'chance', according to your drop multiplier.

Chance value range , starts from 0 to 1000000.

So if you have an item with max chance range (100%), and your drop rate is x10, then you must divide your chance value by 10, eitherwise you will get x10 times this item.

*edit : an update query example for x10 drop rate would be like this :

Code: Select all

update `droplist` Inner Join `npc` ON `npc`.`id` = `droplist`.`mobId` set `droplist`.`chance` = `droplist`.`chance`/10 where `npc`.`type` =  'L2GrandBoss'

Re: Some Questions about L2j server Pack

Posted: Mon Jul 30, 2012 12:32 pm
by KingSton
In my server DropRate is 25, so I need to 1 000 000 / 25 = 40 000
When I set this chance, GrandRaid don't drop item every time, exactly almost exclusive times.
There would be different place, where maybe it could be fixed.

Re: Some Questions about L2j server Pack

Posted: Mon Jul 30, 2012 1:42 pm
by Asmodaius
RaidBoss and GrandBoss, use the raid drop multiplier.

The x25 drop rate multiplier is applied, to your raid drops also?

Re: Some Questions about L2j server Pack

Posted: Mon Jul 30, 2012 2:56 pm
by KingSton
Yes. And one bad thing is that Drop rate for monsters and Raidboss ( also for GrandBoss ) are same, becouse of only one option in rate config.

Re: Some Questions about L2j server Pack

Posted: Tue Jul 31, 2012 6:35 am
by KingSton
So, do anybody know how to fix drop for Grand RaidBoss?

Re: Some Questions about L2j server Pack

Posted: Tue Jul 31, 2012 6:57 am
by Asmodaius
Make an sql query and check the drop chance of the items for GrandBoss. Then apply the chance you'd like manually.

Are you sure that there isn't any core sided java class, that excludes npc types of Raid Boss, Raid Minions and Grand Boss, from the drop rate multiplier?

Re: Some Questions about L2j server Pack

Posted: Tue Jul 31, 2012 6:59 am
by KingSton
I need to look closer, but I think that there isn't.

Re: Some Questions about L2j server Pack

Posted: Tue Jul 31, 2012 7:40 am
by KingSton
Isn't posible to reconfigurate server that in rate config I will be able to add some other properties? ( Is it is hard to do? )
Can you offer best program in which I can open and edit .class files?

Re: Some Questions about L2j server Pack

Posted: Tue Jul 31, 2012 7:41 am
by jurchiks
Can you offer best program in which I can open and edit .class files?
Jesus Christ...
Download the source code already.

Re: Some Questions about L2j server Pack

Posted: Tue Jul 31, 2012 7:14 pm
by KingSton
I just asked simple question. If you have as much experience as I think it would be easy to answer. When I am just a beginer everyday comes some difficulties, so I just want to search for a help ( only then, when I can't fix it by myself and there is no information in forums) and you don't need to be angry ( "Jesus Christ..." ) :)

Can you clearly explain or give a site or something, where I can find information how to use Eclipse and Java when you want to work with Source files, edit them, creat new...

It will be more valuable when I find way to fix it by my self, also you will safe more time ( I suppose you don't forget last time, when I needed help ). If you can't help me, I just search in other place, maybe other people in other forums will help.

I respect people who help others, when get enough experience they help others. I soppose when I find a solution to this problem I will help other personalities like I.

Re: Some Questions about L2j server Pack

Posted: Tue Jul 31, 2012 7:38 pm
by jurchiks
http://www.l2jserver.com/wiki/L2j_Wiki:Community_Portal
Read "Setting up a server" part, and this:
viewforum.php?f=79
Nobody can teach you how to use an IDE, just download it and use it, if you're adept with computers and know how to learn, you'll do just fine.

P.S. I wasn't angry, I was facepalming.