All you have to do is to get the elite monster code ( by GM/GA Char),
And to execute the next query with the code you got:
PHP Code:
use SRO_VT_SHARD select ID from _RefObjCommon where CodeName128 = 'The code of the elite moster'
This query returns the ID of the monster.
Use the query again, but this time put the item code, and not the monster code ( you can get the code again from the GM/GA char ),
After you got the both codes, all you gotta do is to put them here, instead of the number "00000" and to change the drop ratio.
PHP Code:
USE SRO_VT_SHARD -----> By-Flowushy <-----
GO
DECLARE [MENTION=290558]MONSTER[/MENTION]ID int
DECLARE [MENTION=1134588]item[/MENTION]ID int
DECLARE [MENTION=2178693]Dropr[/MENTION]atio real
SET [MENTION=290558]MONSTER[/MENTION]ID = 00000 -------- Mob,Unique ID you want Add Drop in
SET [MENTION=2178693]Dropr[/MENTION]atio = 1 -------- Item drop rate 1=100% , 0.3 = 30%
SET [MENTION=1134588]item[/MENTION]ID = 00000 -------- ITEM ID You want Add in Drops
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 [MENTION=290558]MONSTER[/MENTION]ID , [MENTION=1134588]item[/MENTION]ID, 0, 0, 1, 1, [MENTION=2178693]Dropr[/MENTION]atio, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0 , 0 , 'xxx')
Enjoy