hey guys ,
here is some simple but yet useful queries that i created and might be useful for people who needs it,
----------
Magic Pop
----------
See all Magic pop items with names and service :
See All Magic Pop items by Item Degree :Code:select p.Service,p.RefItemID, p.Set_ID, a.ID, a.CodeName128from _RefGachaItemSet p inner join _RefObjCommon a on a.ID = p.RefItemID
(you can change %_10_%C_RARE% to what ever you want "%_10_%C_RARE%" = Suns 10D and also if you want to see Disabled Items too , just remove "and p.Service = 0")Code:select p.Service,p.RefItemID, p.Set_ID, a.ID, a.CodeName128from _RefGachaItemSet p inner join _RefObjCommon a on a.ID = p.RefItemID where a.CodeName128 like '%_10_%C_RARE%' and p.Service = 0 and a.CodeName128 not like '%etc%'
see all items from magic pop that you can get if you fail :
Code:select p.Service, p.RefItemID, p.Set_ID, a.ID, a.CodeName128 from _RefGachaItemSet p inner join _RefObjCommon a on a.ID = p.RefItemID where p.Set_ID = 2 and p.Service = 1
Disable Magic Pop Items by CodeName128 :
Code:update _RefGachaItemSet SET Service = 0 from _RefGachaItemSet p inner join _RefObjCommon a on a.ID = p.RefItemID where a.CodeName128 like '%_11_%' and p.Service = 1 and a.CodeName128 not like '%etc%'
(Change '%_11_%' to what ever you want )
-------
Drops :
-------
Watch All drops (items) included names and Services and groups :
disable/enable drop "items" by Codename :Code:select p.Service,p.RefItemID, a.ID, a.CodeName128,p.DropCount,p.AssignedGroup,p.Prob_Relative from _RefDropItemAssign p inner join _RefObjCommon a on a.ID = p.RefItemID
Code:update _RefDropItemAssign SET Service = 0 from _RefDropItemAssign p inner join _RefObjCommon a on a.ID = p.RefItemID where a.CodeName128 like '%_11_%' and p.Service = 1
(To Enable Set Service to 1 instead of 0, to change the items edit the "'%_11_%'" for anything else you want , '%_11_%' = all 11D Items! .)
i will update you guys with more queries soon , got plenty of them .
if someone needs something in particular , just pm me.



Reply With Quote

