Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[Question] Monsters

Status
Not open for further replies.
Newbie Spellweaver
Joined
Mar 23, 2020
Messages
85
Reaction score
3
Some questions about monsters and their drops, I'm fixing some monsters here on my server and I came across Crane Machinery, this monster from normal to giant, doesn't drop items:

Code:
DropKind(IK3_SWD, 65, 72);
    DropKind(IK3_AXE, 65, 72);
    DropKind(IK3_CHEERSTICK, 65, 72);
    DropKind(IK3_KNUCKLEHAMMER, 65, 72);
    DropKind(IK3_WAND, 65, 72);
    DropKind(IK3_STAFF, 65, 72);
    DropKind(IK3_HELMET, 65, 72);
    DropKind(IK3_SUIT, 65, 74);
    DropKind(IK3_GAUNTLET, 65, 72);
    DropKind(IK3_BOOTS, 65, 72);
    DropKind(IK3_SHIELD, 65, 72);
    DropKind(IK3_BOW, 65, 72);
    DropKind(IK3_YOYO, 65, 72);


And the drop is the same as the previous bosses and even so it doesn't drop, the only thing that drops are these weapons that I recently added to the monster:

Code:
DropItem(II_WEA_SWO_SUHO, 3000000, 0, 1);
    DropItem(II_WEA_SWT_SUHO, 3500000, 0, 1);
    DropItem(II_WEA_AXE_SUHO, 3000000, 0, 1);
    DropItem(II_WEA_AXT_SUHO, 3500000, 0, 1);
    DropItem(II_WEA_KNU_SUHO, 3200000, 0, 1);
    DropItem(II_WEA_CHE_SUHO, 3500000, 0, 1);
    DropItem(II_WEA_WAN_SUHO, 3500000, 0, 1);
    DropItem(II_WEA_STA_SUHO, 3500000, 0, 1);
    DropItem(II_WEA_BOW_SUHO, 3000000, 0, 1);
    DropItem(II_WEA_YOY_SUHO, 3500000, 0, 1);

My Crane Machinary:

Code:
https://pastebin.com/NJJqvhvM

Why is my crane Machinery not dropping? Do you have any other drop files?



What do these numbers after the item mean?

Code:
DropKind(IK3_SWD, 65, 72);

You mean it will drop from lvl 65 to 72?


I'm asking these questions because some bosses, even with the same drop rate, are a little different
 
Inactive
Joined
Jan 20, 2009
Messages
1,014
Reaction score
1,830
All of this is in the top of propMoverEx.inc. Be sure to translate it from Korean to your language and you'll have all the answers.
 
Upvote 0
Newbie Spellweaver
Joined
Mar 23, 2020
Messages
85
Reaction score
3
I noticed that when I change my location fItemDropRate = 1, no matter how much I increase it, it doesn't change my drops

and all monsters with:
DropKind(IK3_SWD, 6, 6);
DropKind(IK3_AXE, 6, 6);
DropKind(IK3_CHEERSTICK, 6, 6);
DropKind(IK3_KNUCKLEHAMMER, 6, 6);
DropKind(IK3_WAND, 6, 6);
DropKind(IK3_STAFF, 6, 6);
DropKind(IK3_HELMET, 6, 6);
DropKind(IK3_SUIT, 6, 6);
DropKind(IK3_GAUNTLET, 6, 6);
DropKind(IK3_BOOTS, 6, 6);
DropKind(IK3_SHIELD, 6, 6);
DropKind(IK3_BOW, 6, 6);
DropKind(IK3_YOYO, 6, 6);

they are not dropping any items, only food and quest item


i think it is disabled for normal item drops, any tips on how to re-enable or change it?
 
Last edited:
Upvote 0
Newbie Spellweaver
Joined
Mar 23, 2020
Messages
85
Reaction score
3
Sorry if it felt like that, I'm not lazy, I'm just finishing separating the files, I just wanted to know so that it doesn't get too long with files that might not be important



these are all the files i found with fDropItemRate

 
Last edited:
Upvote 0
Status
Not open for further replies.
Back
Top