[Ask]Flyff Pieces

05/07/2022 16:19 pepeton#1
Hi,

I just leeched the fly coupon in other files and I have successfully added it. Now my problem is adding it on drops when you reach level 60 and above. Which file should I open to add drops?
05/07/2022 21:51 dpkidz#2
propmoverex if you want specific drops from specific monsters.

propDropEvent
if you want a certain item to drop between two levels of monsters.

For example:
DropItem(ItemID, Probability, Upgrade, -1 (Always -1), Min Level, Max Level)

DropItem(RANDOM_ITEM, 1000000000, 1, -1, 15, 120);

This will drop a "Random Item" from all monsters between level 15 & 120.

-- 1000000000 = 100% (maybe lower this to 20% or something, your choice)