How to Delete all pet's From Game with out that Error

Results 1 to 5 of 5
  1. #1
    Member mag is offline
    MemberRank
    Apr 2013 Join Date
    47Posts

    sad How to Delete all pet's From Game with out that Error

    Welcome RZ Brother's
    i want to Delete all pet's from Game
    when i Clean TimeDjopForpet/CharCos/InvCos
    then open my Server and Press Start on Char i Get Confirm



  2. #2
    Member mag is offline
    MemberRank
    Apr 2013 Join Date
    47Posts

    Re: How to Delete all pet's From Game with out that Error

    Any idea

  3. #3
    No avatar RenePunik is offline
    Grand MasterRank
    Feb 2013 Join Date
    1,431Posts

    Re: How to Delete all pet's From Game with out that Error

    Screen or more detail to help you!

  4. #4
    Newbie NadaZayed is offline
    MemberRank
    Feb 2014 Join Date
    5Posts

    Re: How to Delete all pet's From Game with out that Error

    Just Disable them ..

  5. #5
    Member InPanic Kev is offline
    MemberRank
    Oct 2011 Join Date
    GERMANYLocation
    76Posts

    Re: How to Delete all pet's From Game with out that Error

    You need to delete all :

    From _Items
    With this Query you can see all Pick Pets from the Server
    Code:
    SELECT ID64 , RefItemID , CodeName128 , Data FROM _Items as i
    left join _RefObjCommon as roc on roc.ID = i.RefItemID
    where TypeID1 = 3 and TypeID2 = 2 and TypeID3 = 1 and TypeID4 = 2
    With this Query you can check all Pet Inventory
    Code:
    -- Pet Inventar 
    select COSID , Slot , ItemID , CodeName128 , OptLevel from _InvCOS as inv
    left join _Items as I on I.ID64 = INV.ItemID
    left join _RefObjCommon as roc on roc.ID = I.RefItemID
    order by COSID,Slot DESC
    also you need to set the ItemID from all Pets to 0 [ _Inventory / GuildStorage / and and and ] and delete all the Pet Timed Jobs

    its rly easy if you know MSSQL ;)

    #edit ::::

    with this query you can see all Pets from Players (inventory)
    Code:
    SELECT CharID , Slot , ItemID , CodeName128 FROM _Inventory as inv
    left join _Items as i on i.ID64 = inv.ItemID
    left join _RefObjCommon as roc on roc.ID = i.RefItemID
    where TypeID1 = 3 and TypeID2 = 2 and TypeID3 = 1 and TypeID4 = 2
    if u wanna delete all Pets from the Player Inventory [use this query]
    Code:
    -- Set all Pick Pets from the Player Inventory to 0 ( del )
    Update _Inventory 
    set ItemID = 0
    from _Inventory as inv
    left join _Items as i on i.ID64 = inv.ItemID
    left join _RefObjCommon as roc on roc.ID = i.RefItemID
    where TypeID1 = 3 and TypeID2 = 2 and TypeID3 = 1 and TypeID4 = 2
    you need the same for GuildStorage and AccountStorage ....
    Last edited by InPanic Kev; 20-05-14 at 02:38 AM.



Advertisement