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!

How to change drop table of mobs?

Junior Spellweaver
Joined
Oct 15, 2012
Messages
105
Reaction score
9
Hi guys I have been trying to learn about editing kalonline server. I used some tutorial videos and so far am able to make shops, a few items and make new mob spawns.

I have not been able to figure out how to change the drop table at all or even where to begin.

Does anyone have a tutorial on how to do that or any information on where to start looking?

Thanks!
 
Elite Diviner
Joined
Sep 14, 2006
Messages
429
Reaction score
273
Last edited:
Upvote 0
Junior Spellweaver
Joined
Oct 15, 2012
Messages
105
Reaction score
9

Is there any more up to date explanation of how the groups work? The first link seems to be outdated and missing vital parts of the explanation.
 
Upvote 0
Junior Spellweaver
Joined
Oct 15, 2012
Messages
105
Reaction score
9
Can't be outdated, that never changed, still the same way

No did you read the thread? It doesn't explain what every box means. It explains geons and group. What about items? How to add in your own items to groups. How to create a new group.

It doesnt give any more information. This is all I see

----------------------------------------------------------
OK I will explain in a small group, it should be enough to make you understand.

(group (index 101) (money (500 200)) (item (500 443 0) (450 47 0)))

(group <-- Open a group
(index 101) <-- Group Index (unique number)
(money (500 200)) <-- Will make your monster drop geons, 50% of chance to drop 200 geons. ( 500 /10 = 50 and this will be the percentage)
(item <-- In other words we can say this will make your monster drop a item.
(500 443 0) <-- So you
--------------------------------------------------------------

(500 443 0) What do these numbers represent? There is no explanation on them, its like it has been cut off
 
Upvote 0
Newbie Spellweaver
Joined
Oct 28, 2006
Messages
84
Reaction score
21
Droplists are by far the easiest thing you have to learn about doing Servers

Example and Explanation once again:

This Line is supposed to drop a full G50 Set:

First and most important Lesson about Drops is kinda simple. !!! 1000 is max and 10 means 1% !!!

(group (index 7000) (money (800 12350)) (item (810 372) (820 373) (830 374) (840 375) (850 376)))

(money (800 12350)) = 80% chance to get Money

(group (index 7000) = You can compare that with a name it simply means if you add the " index 7000" to a Monster that its gonna be to drop the G50 full set



(item (810 372) (820 373) (830 374) (840 375) (850 376))) = its around a 1% chance that one of those Item listed will drop

(820 374 0) the 0 is the prefix u could add to the item, for example 92 is Kings so if u go with (820 374 92) the dropped item will have a Kings on it


Adding New Items/ creating your own Group is also pretty simple. Always start with (group (index xxxx) ((xxxx mean the numbers you wanna add from 1 to 9999))

Index from your Items are listed in InitItem just copie past em.

btw. i have no idea how else i could explain that... please correct me if theres something wrong, was 5 years ago i made my last droplist
 
Last edited:
Upvote 0
Junior Spellweaver
Joined
Oct 15, 2012
Messages
105
Reaction score
9
Droplists are by far the easiest thing you have to learn about doing Servers

Example and Explanation once again:

This Line is supposed to drop a full G50 Set:

First and most important Lesson about Drops is kinda simple. !!! 1000 is max and 10 means 1% !!!

(group (index 7000) (money (800 12350)) (item (810 372) (820 373) (830 374) (840 375) (850 376)))

(money (800 12350)) = 80% chance to get Money

(group (index 7000) = You can compare that with a name it simply means if you add the " index 7000" to a Monster that its gonna be to drop the G50 full set



(item (810 372) (820 373) (830 374) (840 375) (850 376))) = its around a 1% chance that one of those Item listed will drop

(820 374 0) the 0 is the prefix u could add to the item, for example 92 is Kings so if u go with (820 374 92) the dropped item will have a Kings on it


Adding New Items/ creating your own Group is also pretty simple. Always start with (group (index xxxx) ((xxxx mean the numbers you wanna add from 1 to 9999))

Index from your Items are listed in InitItem just copie past em.

btw. i have no idea how else i could explain that... please correct me if theres something wrong, was 5 years ago i made my last droplist

Thank you that was a perfect explanation. That's what I needed. I really appreciate everyone's help.
 
Upvote 0
Back
Top