propDropEvent and propMoverEx ! Please Help

07/17/2016 18:21 Kitchow#1
Hey,

For some time, I've started my pserv and as I'm a newbe on, I need your help on targets elements.

Basically, I'd like to know the difference between propDropEvent.inc and propMoverEx.inc
I still don't get the difference on rate drop in both files. Here an example :

What's the difference between those two elements ?

DropItem(II_GEN_MAT_ELE_CANDLEA, 2600000, 0, -1, 20, 200 ) -> PropDroEvent
DropItem(II_GEN_MAT_ELE_CANDLEA, 25000, 0, 1) -> PropMover

In the first one, is it the itemdrop max number that falls in the whole serv ??
In the second, is it the item chance drop depending on the rate drop ??

Thx in advance.
07/17/2016 18:33 Flogolo#2
Quote:
Originally Posted by Kitchow View Post
Hey,

For some time, I've started my pserv and as I'm a newbe on, I need your help on targets elements.

Basically, I'd like to know the difference between propDropEvent.inc and propMoverEx.inc
I still don't get the difference on rate drop in both files. Here an example :

What's the difference between those two elements ?

DropItem(II_GEN_MAT_ELE_CANDLEA, 2600000, 0, -1, 20, 200 ) -> PropDroEvent
DropItem(II_GEN_MAT_ELE_CANDLEA, 25000, 0, 1) -> PropMover

In the first one, is it the itemdrop max number that falls in the whole serv ??
In the second, is it the item chance drop depending on the rate drop ??

Thx in advance.
propDropEvent controls the item drops per mob group, e.g. which mob level drops 105 sets.

propMoverEx is the specific control, which single mob drops which item, or itemkind. this file is e.g. important for Boss Mobs
07/17/2016 20:17 Kitchow#3
Thx for replying.

DropItem(II_GEN_MAT_ELE_CANDLEA, 2600000, 0, -1, 20, 200 )
DropItem(II_GEN_MAT_ELE_CANDLEA, 25000, 0, 1)

That means if I want to set to each mobs dropping CANDLEA, i just have to go to propDropEvent and change the value 2600000 by 30000000. And therefore I won't need to paste "DropItem(II_GEN_MAT_ELE_CANDLEA, 25000, 0, 1)" for each mob ??
07/17/2016 21:10 Supindahood#4
Yes thats correct.

DropItem(II_GEN_MAT_ELE_CANDLEA, 2600000, 0, -1, 20, 200 )
What we have here is a card that drops from all monsters in the range of level 20 to 200 at a very high chance.

DropItem(II_GEN_MAT_ELE_CANDLEA, 25000, 0, 1)
What we have here is a specific monster that drops this card at a low chance.
07/18/2016 00:05 Flogolo#5
Quote:
Originally Posted by Kitchow View Post
Thx for replying.

DropItem(II_GEN_MAT_ELE_CANDLEA, 2600000, 0, -1, 20, 200 )
DropItem(II_GEN_MAT_ELE_CANDLEA, 25000, 0, 1)

That means if I want to set to each mobs dropping CANDLEA, i just have to go to propDropEvent and change the value 2600000 by 30000000. And therefore I won't need to paste "DropItem(II_GEN_MAT_ELE_CANDLEA, 25000, 0, 1)" for each mob ??
Yes thats one possibilty, or you add it to the Event.lua
07/18/2016 01:43 Kitchow#6
Thx

Btw, I've found a worldcrash issue in which I still can't fix it... I've changed some things in Azria monsters but in game when I fight them, the worldserver crash :

07/18/2016 02:43 Flogolo#7
why you added the whole sets to that mob? you already have the DropKinds on top.

What says the errorlog?