Some Questions about L2j server Pack

Find the proper support area, Saga-Version.
Forum rules
READ NOW: L2j Forums Rules of Conduct
Post Reply
User avatar
KingSton
Posts: 43
Joined: Mon Apr 16, 2012 1:57 pm
Location: Lithuania

Some Questions about L2j server Pack

Post 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 :)
Everybody is special, but not everyone can find his specific skills.
User avatar
jurchiks
Posts: 6769
Joined: Sat Sep 19, 2009 4:16 pm
Location: Eastern Europe

Re: Some Questions about L2j server Pack

Post 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.
If you have problems, FIRST TRY SOLVING THEM YOURSELF, and if you get errors, TRY TO ANALYZE THEM, and ONLY if you can't help it, THEN ask here.
Otherwise you will never learn anything if all you do is copy-paste!
Discussion breeds innovation.
User avatar
Asmodaius
Posts: 170
Joined: Sun Jul 16, 2006 9:43 am

Re: Some Questions about L2j server Pack

Post 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'
User avatar
KingSton
Posts: 43
Joined: Mon Apr 16, 2012 1:57 pm
Location: Lithuania

Re: Some Questions about L2j server Pack

Post 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.
Everybody is special, but not everyone can find his specific skills.
User avatar
Asmodaius
Posts: 170
Joined: Sun Jul 16, 2006 9:43 am

Re: Some Questions about L2j server Pack

Post by Asmodaius »

RaidBoss and GrandBoss, use the raid drop multiplier.

The x25 drop rate multiplier is applied, to your raid drops also?
User avatar
KingSton
Posts: 43
Joined: Mon Apr 16, 2012 1:57 pm
Location: Lithuania

Re: Some Questions about L2j server Pack

Post 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.
Everybody is special, but not everyone can find his specific skills.
User avatar
KingSton
Posts: 43
Joined: Mon Apr 16, 2012 1:57 pm
Location: Lithuania

Re: Some Questions about L2j server Pack

Post by KingSton »

So, do anybody know how to fix drop for Grand RaidBoss?
Everybody is special, but not everyone can find his specific skills.
User avatar
Asmodaius
Posts: 170
Joined: Sun Jul 16, 2006 9:43 am

Re: Some Questions about L2j server Pack

Post 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?
User avatar
KingSton
Posts: 43
Joined: Mon Apr 16, 2012 1:57 pm
Location: Lithuania

Re: Some Questions about L2j server Pack

Post by KingSton »

I need to look closer, but I think that there isn't.
Everybody is special, but not everyone can find his specific skills.
User avatar
KingSton
Posts: 43
Joined: Mon Apr 16, 2012 1:57 pm
Location: Lithuania

Re: Some Questions about L2j server Pack

Post 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?
Everybody is special, but not everyone can find his specific skills.
User avatar
jurchiks
Posts: 6769
Joined: Sat Sep 19, 2009 4:16 pm
Location: Eastern Europe

Re: Some Questions about L2j server Pack

Post by jurchiks »

Can you offer best program in which I can open and edit .class files?
Jesus Christ...
Download the source code already.
If you have problems, FIRST TRY SOLVING THEM YOURSELF, and if you get errors, TRY TO ANALYZE THEM, and ONLY if you can't help it, THEN ask here.
Otherwise you will never learn anything if all you do is copy-paste!
Discussion breeds innovation.
User avatar
KingSton
Posts: 43
Joined: Mon Apr 16, 2012 1:57 pm
Location: Lithuania

Re: Some Questions about L2j server Pack

Post 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.
Everybody is special, but not everyone can find his specific skills.
User avatar
jurchiks
Posts: 6769
Joined: Sat Sep 19, 2009 4:16 pm
Location: Eastern Europe

Re: Some Questions about L2j server Pack

Post 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.
If you have problems, FIRST TRY SOLVING THEM YOURSELF, and if you get errors, TRY TO ANALYZE THEM, and ONLY if you can't help it, THEN ask here.
Otherwise you will never learn anything if all you do is copy-paste!
Discussion breeds innovation.
Post Reply