Quote:
Originally Posted by castor4878
as it is, this statement is incorrect - you very likely don't want to obtain what it does.
you certainly wanna perform:
where MobID=<id> and ItemOrder=1
|
Yeah, sorry forgot to put on which "slot" you are adding the drop plus its droprate, ty for that Castor.
Quote:
Originally Posted by Xiolinkimiko
Do i change all the Item Orders to 1 and 100 for DropRate and use AriezOMG's ID List to get the Grades and put them in??
|
No, you would need to be changing the ItemOrder to the one you are changing, for example:
Code:
Use PS_GameDefs
Update dbo.MobItems set Grade = [Grade of the item to drop], DropRate = [Drop Rate that you want for the item] where MobID = [ID of the mob you want to drop the item] and ItemOrder = [slot you are updating]
If you wanted to change/add a drop on MobId = 2008 on the drop number 4 you would just have to do:
Code:
Use PS_GameDefs
Update dbo.MobItems set Grade = [Grade of the item to drop], DropRate = [Drop Rate that you want for the item] where MobID = 2008 and ItemOrder = 4
And so on to be changing every drop for that mob; remember that if you just dont add any grade nor droprate that slot is not going to be used so that mob is just going to drop the ammount of items that you used, so not necessarily you have to use all of them, yet, you can do so