[Need Help]How do I add drops ?

01/11/2012 19:59 808Saga#1
How do i edit where things drop and the % to the drop ?

and also how do i make new items like custom lapises and how would i go about adding them to the game... ????

Any advice on topics like this would be extreamly use full to me thanks
01/11/2012 20:01 [DEV]xXDASHXx#2
my advise is SEARCH button all questions asked are infact answerd MANY times thrue epvp threads
01/11/2012 22:06 808Saga#3
I did but there is only one thread on that subject, if you know of more please point me in the right direction
01/12/2012 06:56 JohnHeatz#4
Drops are managed under PS_GameDefs.dbo.MobItems, the grade of the item and the droprate are the ones who you use.

As for making new items, I would say that the easiest way is to use ShStudio
01/13/2012 10:12 808Saga#5
what do i use to edit the PS_GameDefs.dbo ???
01/13/2012 17:23 JohnHeatz#6
Get into your SQL Server, and use an Update query example:

Code:
Use PS_GameDefs
Update dbo.MobItems set Grade = Item_Grade, DropRate = % 
where MobID = MobID_to_drop_the_item and ItemOrder = Item_Order