Hello Devs!
I need some help because I can't found how to change drop level limit at Uniques for example like Tiger Girl (level drop limit 20-40)
I mean, if someone kill Tiger Girl and He's not between level 20 to level 40 that mob will not drop anything!! I added some Iron Coins drop to all normal uniques like Tiger Girl, Cerberus, Captain Ivy, Uruchi, Isyutaru, Lord Yarkan and Demon Shaitan, but them didnt drop anything to high level chars, my sro is based on cap 120 so when they hunt those uniques they didnt get any iron coin because drop level limit, I need to change it but I dont know how.
I used this query to add the drop to uniques and it worked... When players slain that uniques if they are between the range of unique drop level, the uniques drop iron coins.
From:
[Only registered and activated users can see links. Click Here To Register...]
Thanks alot for help me and also for try to :D
I need some help because I can't found how to change drop level limit at Uniques for example like Tiger Girl (level drop limit 20-40)
I mean, if someone kill Tiger Girl and He's not between level 20 to level 40 that mob will not drop anything!! I added some Iron Coins drop to all normal uniques like Tiger Girl, Cerberus, Captain Ivy, Uruchi, Isyutaru, Lord Yarkan and Demon Shaitan, but them didnt drop anything to high level chars, my sro is based on cap 120 so when they hunt those uniques they didnt get any iron coin because drop level limit, I need to change it but I dont know how.
I used this query to add the drop to uniques and it worked... When players slain that uniques if they are between the range of unique drop level, the uniques drop iron coins.
PHP Code:
USE SRO_VT_SHARD -----> By-Flowushy <-----
GO
DECLARE @MonsterID int
DECLARE @ItemID int
DECLARE @DropRatio real
SET @MonsterID = 3810 -------- Mob,Unique ID you want Add Drop in
SET @DropRatio = 1 -------- Item drop rate 1=100% , 0.3 = 30%
SET @ItemID = 24165 -------- 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(@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')
[Only registered and activated users can see links. Click Here To Register...]
Thanks alot for help me and also for try to :D