[Help] For some reason I can't remove CS from kecoon fighter..
I've tried a lot of ways.. but is there some way I can remove the monster from the game?..
n another newbie question, how do I actually save my currently DB?
thx in advance
Re: For some reason I can't remove CS from kecoon fighter..
1st use this query to delete monster
delete from [K_MONSTER] where sSid = monsterID
2nd
to save your database
right click on ur DB name>All tasks>backup data base>choose where u wanna save>Ok
Re: For some reason I can't remove CS from kecoon fighter..
You can remove CS from Kecoon Fighter...lol
The IDs of Kecoon Fighter are 102 and 152. To make sure their drop doesn't code for another monster, put this into a query and hit execute:
Code:
update k_monster set sItem='102' where sSid='102'
update k_monster set sItem='152' where sSid='152'
Then, go find it via K_Monster_Item.
Code:
select * from k_monster_item where sIndex='102' or '152'
You'll find their rows, then just make it into update codes.
For example, if the Chitin Shield ID is on iItem03:
Code:
update k_monster_item set iItem03='0' where sIndex='102' or '152'
Either that, or you can just go fish for both IDs in k_monster_item if you don't wanna deal with update queries.
Re: For some reason I can't remove CS from kecoon fighter..
OMG you guys are dumb how many times i gotta tell you its not just K_monster_item that controls what get drops.
make_item_group
Re: [Help] For some reason I can't remove CS from kecoon fighter..
easiest most simple way to delete a drop is get a drop editor wich can be found on this forum even 6 year olds can use that without problems
Re: [Help] For some reason I can't remove CS from kecoon fighter..
Quote:
Originally Posted by
NLwesje
easiest most simple way to delete a drop is get a drop editor wich can be found on this forum even 6 year olds can use that without problems
a drop editor doesnt edit K_monster_item, k_monster AND MAKE_ITEM_GROUP. i recommend to manually make your drops.
Re: For some reason I can't remove CS from kecoon fighter..
Quote:
Originally Posted by
Advocate
OMG you guys are dumb how many times i gotta tell you its not just K_monster_item that controls what get drops.
make_item_group
Make_Item_Group controls 60 of the drops. K_Monster_Item controls the other 3 drops. I'm assuming that the CS ID is on one of those 3 other drops. If not, it would be really noticeable having 170250256 spammed 30 times so that it would give 100% drop.