[_RefMonster_AssignedItemDrop]
Add For Query
Drop 1 Unique 40 max 51Quote:
62804 25834 0 0 150 150 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 xxx
62805 25834 0 0 150 150 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 xxx
62806 25834 0 0 150 150 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 xxx
62807 25834 0 0 150 150 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 xxx
62808 25834 0 0 150 150 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 xxx
Add For Query
Quote:
USE MODYZ_SHD ---(To ElitePvpers) ----->.-----> (Flowushy) <-----.<-----
GO
DECLARE @MonsterID int
DECLARE @ItemID int
DECLARE @DropRatio real
SET @MonsterID = 62804---<-------- The mob or the unique ID
SET @DropRatio = 100 ----<-------- Drop rate , 1=100% , 0.5=50%
SET @ItemID = 25834 ----<-------- ITEM ID u want to add in the Drop
INSERT _RefMonster_AssignedItemDrop
(
RefMonsterID,
RefItemID,
DropGroupType,
OptLevel,
DropAmountMin,
DropAmountMax,
DropRatio,
RefMagicOptionID1,
CustomValue1,
RefMagicOptionID2,
CustomValue2,
RefMagicOptionID3,
CustomValue3,
RefMagicOptionID4,
CustomValue4,
RefMagicOptionID5,
CustomValue5,
RefMagicOptionID6,
CustomValue6,
RefMagicOptionID7,
CustomValue7,
RefMagicOptionID8,
CustomValue8,
RefMagicOptionID9,
CustomValue9,
RentCodeName
)
VALUES(@MonsterID , @ItemID, 0, 0, 150, 150, @DropRatio, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0 , 0 , 'xxx')