Drop rate problem

09/16/2017 02:06 MinaThabit#1
[_RefMonster_AssignedItemDrop]
Quote:
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
Drop 1 Unique 40 max 51


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')
09/18/2017 02:46 MinaThabit#2
Up
09/18/2017 13:11 R3D*#3
Quote:
Originally Posted by MinaThabit View Post
Up
I already solved this problem for you.
09/21/2017 22:04 MinaThabit#4
Quote:
Originally Posted by ZΞDStorm View Post
I already solved this problem for you.
Ok My Bro