Disable Drops/Magic Pop items by CodeName128/Degree

Results 1 to 12 of 12
  1. #1
    CPP/C#/PHP/ASM Naty48 is offline
    MemberRank
    Apr 2009 Join Date
    IsraelLocation
    655Posts

    Post Disable Drops/Magic Pop items by CodeName128/Degree

    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 :

    Code:
    select p.Service,p.RefItemID, p.Set_ID, a.ID, a.CodeName128from _RefGachaItemSet p
    inner join _RefObjCommon a on a.ID = p.RefItemID
    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
    where a.CodeName128 like '%_10_%C_RARE%' and p.Service = 0 and a.CodeName128 not like '%etc%'
    (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")


    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 :


    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
    disable/enable drop "items" by Codename :


    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.
    Last edited by Naty48; 03-01-13 at 01:37 PM.


  2. #2
    Learning denise456 is offline
    MemberRank
    Feb 2012 Join Date
    BrasilLocation
    318Posts

    Re: Disable Drops/Magic Pop items by CodeName128/Degree

    Nice Job

  3. #3
    Valued Member Crue is offline
    MemberRank
    Dec 2012 Join Date
    105Posts

    Re: Disable Drops/Magic Pop items by CodeName128/Degree

    Good Job Dude

  4. #4
    SilkRoad vSro Service MaDenGo is offline
    MemberRank
    Aug 2012 Join Date
    vSro CommunityLocation
    512Posts

    Re: Disable Drops/Magic Pop items by CodeName128/Degree

    Thanks :)

  5. #5
    Apprentice meowlicious is offline
    MemberRank
    Sep 2011 Join Date
    16Posts

    Re: Disable Drops/Magic Pop items by CodeName128/Degree

    use SRO_VT_SHARD
    select p.Service,p.RefItemID, p.Set_ID, a.ID, a.CodeName128from _RefGachaItemSet p
    inner join _RefObjCommon a on a.ID = p.RefItemID
    Msg 102, Level 15, State 1, Line 2
    Incorrect syntax near 'p'.

    why this? :)

  6. #6
    CPP/C#/PHP/ASM Naty48 is offline
    MemberRank
    Apr 2009 Join Date
    IsraelLocation
    655Posts

    Re: Disable Drops/Magic Pop items by CodeName128/Degree

    select p.Service,p.RefItemID, p.Set_ID, a.ID, a.CodeName128
    from _RefGachaItemSet p
    inner join _RefObjCommon a on a.ID = p.RefItemID

    dont remove the space from CodeName128 to "from _RefGachaItemSet"

  7. #7
    Enthusiast tapsie is offline
    MemberRank
    Oct 2011 Join Date
    33Posts

    Re: Disable Drops/Magic Pop items by CodeName128/Degree

    Same Problem -.-

    Msg 102, Level 15, State 1, Line 1
    Incorrect syntax near 'p'.

  8. #8
    CPP/C#/PHP/ASM Naty48 is offline
    MemberRank
    Apr 2009 Join Date
    IsraelLocation
    655Posts

    Re: Disable Drops/Magic Pop items by CodeName128/Degree

    i just tested it again.. , it works perfectly.

    do exactly like that :

    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
    - DO NOT REMOVE THE SPACES/NEW LINES!.

    all those queries must be used at "
    SRO_VT_SHARD_INIT" in order to work.

    if it's still don't work , upload a picture from the sql query analzyer , i wanna watch what you did that caused that.



  9. #9
    Enthusiast tapsie is offline
    MemberRank
    Oct 2011 Join Date
    33Posts

    Re: Disable Drops/Magic Pop items by CodeName128/Degree

    ok working fine this 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

    i have rename SRO_VT_SHARD ----> SRO_VT_SHARD_INIT
    THX for this lines

  10. #10
    CPP/C#/PHP/ASM Naty48 is offline
    MemberRank
    Apr 2009 Join Date
    IsraelLocation
    655Posts

    Re: Disable Drops/Magic Pop items by CodeName128/Degree

    enjoy mate .


    im working on a few more.

    removing all monster spawns with the same pk2 name .

    remove all monsters from X level to X level.

    multiplay monsters spawn from X level to X Level or Specific Area.

    multiplay all attack pets attack .

    and probably more later on.

  11. #11
    Member tk69 is offline
    MemberRank
    Oct 2013 Join Date
    70Posts

    Re: Disable Drops/Magic Pop items by CodeName128/Degree

    can i Disable seal of sun from drop? if yes tell me how plz,thank you.

  12. #12
    Apprentice lovers2 is offline
    MemberRank
    Jan 2013 Join Date
    11Posts

    Re: Disable Drops/Magic Pop items by CodeName128/Degree

    how i can up rate items drop from mobs



Advertisement