Hello,
maybe any1 can help me.
How can I change the Opt level when a Item Destroy if I plus it
Hello,
maybe any1 can help me.
How can I change the Opt level when a Item Destroy if I plus it
It's hardcoded, and noone is yet to find it. I haven't seen any server's with that modified and haven't seen a release for it either.
10: Plus+ u needUSe SRO_VT_SHARD UPDATE _Items SET OptLevel=10 WHERE ID64=1167870
1167870: Item serri in SMC
set CashItem to 1~3 (from 1 to 3 try it yourself)
as far as i remember setting it to 1 makes the item undestroyable.
the rest is done by _AddLogItem eventid 91 = plus failed / destroyed (not sure)
IF(@Operation='91')
BEGIN
declare @itemID int = (select ItemID from SRO_VT_SHARD.._Inventory where Slot=@Slot_From and CharID=@CharID)
update SRO_VT_SHARD.._Items set Optlevel=12 where ID64 @itemID
END
item destroyed eventid is 41 Slot_From = item slot, Slot_To = 255 (DESTROYED)
, strDesc is emptyi don't think you can undo this operation.
tested.