[Question] How to make the monster drops random

06/12/2013 15:17 jeromerz#1
Hello everyone! :)

i just want to ask how do i make the monster drop random equipments not according to there order im having problem on kalgas drops on 130 sets.

my PropMoverEx.inc is like this:


but it only drops the first 9 items

DropItem(II_CHP_RED , 15000000, 0, 100);
DropItem(II_ARM_M_LORDK_HELMET_SET_KAL , 15000000, 0, 1);
DropItem(II_ARM_F_LORDK_HELMET_SET_KAL , 15000000, 0, 1);
DropItem(II_ARM_M_LORDK_SUIT_SET_KAL , 15000000, 0, 1);
DropItem(II_ARM_F_LORDK_SUIT_SET_KAL , 15000000, 0, 1);
DropItem(II_ARM_M_LORDK_GAUNTLET_SET_KAL , 15000000, 0, 1);
DropItem(II_ARM_F_LORDK_GAUNTLET_SET_KAL , 15000000, 0, 1);
DropItem(II_ARM_M_LORDK_BOOTS_SET_KAL , 15000000, 0, 1);
DropItem(II_ARM_F_LORDK_BOOTS_SET_KAL , 15000000, 0, 1);
DropItem(II_ARM_M_STORMB_HELMET_SET_KAL , 15000000, 0, 1);

I want to make it randomize how can i make it? :)

Thnx
06/12/2013 22:36 raventh1984#2
then you must change this 15000000 into an diff value. This is the change it can drop it.
Or increase the max drop.
06/13/2013 04:14 jeromerz#3
if i change that to another value the chance of dropping will be changed the much higher value will be most dropped ?
06/13/2013 12:01 raventh1984#4
If you increase that number then yes it has an more chance to drop that item.
The lower the value the smaller the chance is.