- Katılım
- 23 Eki 2022
- Mesajlar
- 8,393
- Çözümler
- 12
- Tepkime puanı
- 5,239
- Puanları
- 113
- Yaş
- 28
How to Add Item Drops to Mobs & Uniques (vSRO Server Files SQL Guide)
Hello guys, in this guide I will show you how to add a new item drop to mobs and uniques in vSRO server files using SQL queries.
This method works for Shard database (SRO_VT_SHARD) and allows you to assign custom drops easily.
Drop Add Query
USE SRO_VT_SHARD
GO
DECLARE @MonsterID INT
DECLARE @ItemID INT
DECLARE @DropRatio REAL
SET @MonsterID = 3810 -- Mob / Unique ID
SET @ItemID = 24165 -- Item ID to drop
SET @DropRatio = 1 -- 1 = 100%, 0.3 = 30%
INSERT INTO _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,
1,
1,
@DropRatio,
0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
'xxx'
)
Find Item ID (RefObjCommon)
İçeriği görüntülemek için Giriş yapın veya Kayıt olun.
Find Monster ID (RefObjCommon)
İçeriği görüntülemek için Giriş yapın veya Kayıt olun.
Notes
- DropRatio: 1 = 100% drop chance
- Mob and item IDs must be correct from _RefObjCommon
- Works for uniques and normal mobs
- Make sure server is stopped or reload drop tables after insert
