Fast Query to Add Drops in Mob , Unique bla bla bla ^^

Page 1 of 2 12 LastLast
Results 1 to 15 of 24
  1. #1
    SilkRoad vSro Service MaDenGo is offline
    MemberRank
    Aug 2012 Join Date
    vSro CommunityLocation
    512Posts

    cool Fast Query to Add Drops in Mob , Unique bla bla bla ^^


    USE SRO_VT_SHARD -----> ( MaDenGo ) <-----
    GO

    DECLARE @MonsterID int
    DECLARE @ItemID int
    DECLARE @DropRatio real



    SET @MonsterID = 3810 <-------- Mob,Unique ID you want Add Drop in
    SET @DropRatio = 1 <-------- Drop Ration 1=100% , 0.5 = 50%
    SET @ItemID = 24165 <-------- ITEM ID You want Add in Drop


    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')

    To get mob ID us this Query
    Use Sro_vt_shard select ID from _RefObjCommon where CodeName128 like 'MOB_RM_ROC'
    Change MOB_RM_ROC With your Monster or Unique Code


    To get ITEM ID us this Query
    Use SRO_VT_SHARD select ID from _RefObjCommon where CodeName128 like 'ITEM_CH_TBLADE_11_SET_A_RARE'
    Change ITEM_CH_TBLADE_11_SET_A_RARE to Any item you want

    Hope Be Helpfull Thanks..


  2. #2
    Member DieEyes is offline
    MemberRank
    Aug 2012 Join Date
    Inside youLocation
    79Posts

    Re: [Realease] Fast Query to Add Drops in Mob , Unique bla bla bla ^^

    Thanks but already many thread talk about it.

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

    Re: [Realease] Fast Query to Add Drops in Mob , Unique bla bla bla ^^

    Quote Originally Posted by DieEyes View Post
    Thanks but already many thread talk about it.
    Thanks for Replay :) btw im new and sorry ^^ i don't know that many thread talk about it
    Have fun...

  4. #4
    Proficient Member chinowyc is offline
    MemberRank
    Mar 2012 Join Date
    192Posts

    Re: [Realease] Fast Query to Add Drops in Mob , Unique bla bla bla ^^

    Woow very userfull Thanks i'll try it later :D

  5. #5
    NewEvolust.Com xxNukertube is offline
    MemberRank
    Jul 2012 Join Date
    Ceres, Goias, BLocation
    215Posts

    Re: [Realease] Fast Query to Add Drops in Mob , Unique bla bla bla ^^

    LOLLLLLLLLLLLLLLLLLLLLLLLLLLLLL
    HAHAHAH
    I BEAT YOUU

    SEE MY QUERY

    I DONT COPY AND PAST NEWBIE

    PHP Code:
    USE/**/[SRO_VT_SHARD]/**/
    --Credits to Hean
    /*Edited By nukertube*/
    GO
    DECLARE @Mob VarChar(MAX),@Item VarChar(MAX),@MonsterID iNt,@ItemID iNt,@DropRatio ReaL, @DropAmountMin INT, @DropAmountMax INT
    --------------------------------------------------------------------------
    SET @Mob            =    'MOB_SD_ANUBIS'/*Monster Code*/
    SET @Item            =    'ITEM_EVENT_GLOBAL_CHATTING'/*Item Code*/
    SET @DropAmountMin    =    /*Drop Min*/
    SET @DropAmountMax    =    /*Drop Max*/
    SET @DropRatio        =    0.5 /*0.5 = '50%' */
    --------------------------------------------------------------------------
    SET @MonsterID    =    (SELECT ID FROM [dbo].[_RefObjCommonWHERE CodeName128 = @Mob)/**/
    SET @ItemID        =    (SELECT ID FROM [dbo].[_RefObjCommonWHERE CodeName128 = @Item)/**/
    INSERT [dbo].[_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,@DropAmountMin,@DropAmountMax,@DropRatio,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'xxx')/**/ 

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

    Re: [Realease] Fast Query to Add Drops in Mob , Unique bla bla bla ^^

    Quote Originally Posted by xxNukertube View Post
    LOLLLLLLLLLLLLLLLLLLLLLLLLLLLLL
    HAHAHAH
    I BEAT YOUU

    SEE MY QUERY

    I DONT COPY AND PAST NEWBIE

    PHP Code:
    USE/**/[SRO_VT_SHARD]/**/
    --Credits to Hean
    /*Edited By nukertube*/
    GO
    DECLARE @Mob VarChar(MAX),@Item VarChar(MAX),@MonsterID iNt,@ItemID iNt,@DropRatio ReaL, @DropAmountMin INT, @DropAmountMax INT
    --------------------------------------------------------------------------
    SET @Mob            =    'MOB_SD_ANUBIS'/*Monster Code*/
    SET @Item            =    'ITEM_EVENT_GLOBAL_CHATTING'/*Item Code*/
    SET @DropAmountMin    =    /*Drop Min*/
    SET @DropAmountMax    =    /*Drop Max*/
    SET @DropRatio        =    0.5 /*0.5 = '50%' */
    --------------------------------------------------------------------------
    SET @MonsterID    =    (SELECT ID FROM [dbo].[_RefObjCommonWHERE CodeName128 = @Mob)/**/
    SET @ItemID        =    (SELECT ID FROM [dbo].[_RefObjCommonWHERE CodeName128 = @Item)/**/
    INSERT [dbo].[_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,@DropAmountMin,@DropAmountMax,@DropRatio,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'xxx')/**/ 
    hehe so you say i copy it from you :) awesome xD
    Check My Querry ^^
    Have Fun All Zoners -.-

  7. #7
    NewEvolust.Com xxNukertube is offline
    MemberRank
    Jul 2012 Join Date
    Ceres, Goias, BLocation
    215Posts

    Re: [Realease] Fast Query to Add Drops in Mob , Unique bla bla bla ^^

    My Query is Complete -.-
    sorry copier

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

    Re: [Realease] Fast Query to Add Drops in Mob , Unique bla bla bla ^^

    hehe my Query almost do what i want and Easy :)
    Thanks for Respect dude h3h3

  9. #9
    I'm Archimedes InsaneDev is offline
    MemberRank
    Jun 2012 Join Date
    EgyptLocation
    454Posts

    Re: [Realease] Fast Query to Add Drops in Mob , Unique bla bla bla ^^

    can i add multuple lines with any query

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

    Re: [Realease] Fast Query to Add Drops in Mob , Unique bla bla bla ^^

    Quote Originally Posted by InsaneDev View Post
    can i add multuple lines with any query
    you mean douple Drop ! or 2kind of items !?

  11. #11
    Apprentice F50 is offline
    MemberRank
    Feb 2012 Join Date
    24Posts

    Re: [Realease] Fast Query to Add Drops in Mob , Unique bla bla bla ^^

    working ?

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

    Re: [Realease] Fast Query to Add Drops in Mob , Unique bla bla bla ^^

    Quote Originally Posted by F50 View Post
    working ?
    100% Working
    i Tested it Before 100Times :)
    Just Add the Query and Restart Server and Check it ^^
    Have fun ^_~

  13. #13
    Valued Member Hean is offline
    MemberRank
    Sep 2011 Join Date
    126Posts

    Re: [Realease] Fast Query to Add Drops in Mob , Unique bla bla bla ^^

    But you need to add the Data(Durability) from RefObjItem Table ;) This is importand for some Items.

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

    Re: [Realease] Fast Query to Add Drops in Mob , Unique bla bla bla ^^

    Quote Originally Posted by Hean View Post
    But you need to add the Data(Durability) from RefObjItem Table ;) This is importand for some Items.
    Some Items :) not at all -.-
    but thanks for Attention <3

  15. #15
    Novice ahmedothman is offline
    MemberRank
    Jul 2012 Join Date
    1Posts

    Re: [Realease] Fast Query to Add Drops in Mob , Unique bla bla bla ^^

    ok how i can Delete an item like a weapon ??



Page 1 of 2 12 LastLast

Advertisement