[How To]Send items to your character. Edit them. Add titles

Page 1 of 6 123456 LastLast
Results 1 to 15 of 76
  1. #1
    Cya nerds PunkS7yle is offline
    MemberRank
    Feb 2010 Join Date
    1,448Posts

    [How To]Send items to your character. Edit them. Add titles

    If you're like me and you played Vindictus for a while you probably want to play dress-up with your character now that you set up your own local server, I'm here to teach you how to do that.

    • Go to your HeroesOpTool.exe and click the third button from the left, then select Push Items(Item Festival) , this is the same tool Nexon uses for attendance events.
    • Select your server ( should be Test server )
    • Insert your desired items class into the item field (Note : Inserting Gold into the Item field sends gold) .To get the item classes load up heroesContent.db3 from the Bin folder into sqliteBrowser or navicat or whatever you prefer and go to the ItemClassInfo table.
      Should look a little like this :



      Note you can filter by value in the top fields, I suggest using class filtering when looking for stuff for your character, hint, Arisha is 256, Lann is 1, you can find the others.
    • You can also run sql queries for general item names to find items as such :
      Code:
      select * from itemclassinfo where itemclass like '%kadan%'
      This query returns all the keaghan avatar items and a bit more.
    • Moving on, Count value is self-explanatory, and you need to input a message for it to be delivered, once you're done with all that press Run.
    • You should have received your items in inventory by now.


    Now you want to edit these items.
    • Load up the Item table in SSMS, you'll find all the items and gold for all the characters, you need their ID if you want to edit them later, to find a list of all your character items you can run :
      Code:
      select * from heroes..item where ownerid=yourcID
    • Find the ItemID that you wish to edit, run
      Code:
      select * from heroes..ItemAttribute where ItemID = youritemsID
    • The result should be empty or have at maximum a count of 1.If it doesn't check what stats your item already has and update accordingly.
    • If the result is empty run :
      Code:
      insert into heroes..itemattribute (itemid,Attribute,Value,Arg,arg2) values (youritemID,'type','value',0,0)
      Types I tested so far :
      'ENHANCE' : Enhances the items upgrade level, values possible : 0-15.
      'SUFFIX' : Adds a suffix enchant ( scrolls ).
      'PREFIX' : Adds a prefix enchant ( scrolls ).
      You can find suffix and prefix values inside heroesContent.db3 in the bin folder, table name EnchantInfo, looks like this - > http://i.imgur.com/bD9s02W.png , grab the EnchantClass for the value name.
    • You must run an insert statement for each new attribute you're adding to the item.
    • Once you're done it should look a little like this : http://i.imgur.com/APE6Wfz.png


    Remember, the changes won't show up until you relog your character.





    Adding titles :

    You can find a list of possible titles inside heroesContent- > table TitleInfo, they start with ID 410001 and end at 420580, you could add the ones you're missing one by one or you could run an insert statement like I did, code is :

    [T-SQL] add titles - Pastebin.com ( I had to move the code to pastebin cause Incapsula was throwing Error Code 15 - security error when I tried to post this )

    This should add roughly 500 titles for the desired red title effect. Modify the max count for your desired amount.
    If you are still missing some or have incomplete titles run
    Code:
    Update heroes..title set Acquired=1 where cid = yourCID
    Last edited by PunkS7yle; 07-07-16 at 04:04 PM.


  2. #2
    Enthusiast Ayakura is offline
    MemberRank
    Jul 2016 Join Date
    32Posts

    Re: How to send items to your character

    Nice , worked fine for me :) also do u know a way to add titles?

  3. #3
    Cya nerds PunkS7yle is offline
    MemberRank
    Feb 2010 Join Date
    1,448Posts

    Re: How to send items to your character

    Will look into it when I get home tonight, I want to automate a way for titles for the 500+ title color :D

  4. #4
    Enthusiast Ayakura is offline
    MemberRank
    Jul 2016 Join Date
    32Posts

    Re: How to send items to your character

    Quote Originally Posted by PunkS7yle View Post
    Will look into it when I get home tonight, I want to automate a way for titles for the 500+ title color :D
    yep , Also im wondering if there is a way to add item scrolled and +15 already or at the last +15

  5. #5
    Cya nerds PunkS7yle is offline
    MemberRank
    Feb 2010 Join Date
    1,448Posts

    Re: How to send items to your character

    Not sure, but you can edit them after you send them, look in the ItemAttribute table, it's pretty self-explanatory, if it isn't I can write up a tutorial.

  6. #6
    Enthusiast Ayakura is offline
    MemberRank
    Jul 2016 Join Date
    32Posts

    Re: How to send items to your character

    Quote Originally Posted by PunkS7yle View Post
    Not sure, but you can edit them after you send them, look in the ItemAttribute table, it's pretty self-explanatory, if it isn't I can write up a tutorial.
    it will be good if u can tutorial that :o

  7. #7
    Cya nerds PunkS7yle is offline
    MemberRank
    Feb 2010 Join Date
    1,448Posts

    Re: How to send items to your character

    Quote Originally Posted by Ayakura View Post
    it will be good if u can tutorial that :o
    http://i.imgur.com/APE6Wfz.png Seems pretty easy, I'll do it when I get home.

  8. #8
    Proficient Member WAMVN is offline
    MemberRank
    May 2012 Join Date
    151Posts

    Re: How to send items to your character

    Where is heroesContent.db3 ?

  9. #9
    Enthusiast Ayakura is offline
    MemberRank
    Jul 2016 Join Date
    32Posts

    Re: How to send items to your character

    Quote Originally Posted by WAMVN View Post
    Where is heroesContent.db3 ?
    To get the item classes load up heroesContent.db3 from the Bin folder into sqliteBrowser or navicat

  10. #10
    Cya nerds PunkS7yle is offline
    MemberRank
    Feb 2010 Join Date
    1,448Posts

    Re: [How To]Send items to your character. Edit them. Add titles

    Updated first post with steps to modify your items and add titles, this is getting really boring to repeat for each item so I'll write some tools to do it.

  11. #11
    Enthusiast Ayakura is offline
    MemberRank
    Jul 2016 Join Date
    32Posts

    Re: [How To]Send items to your character. Edit them. Add titles

    Quote Originally Posted by PunkS7yle View Post
    Updated first post with steps to modify your items and add titles, this is getting really boring to repeat for each item so I'll write some tools to do it.
    totally agree! imma look overthis if u wanna do a complete tool add also the star quality of the gears ( coz i forgot to mention it before )

  12. #12
    Cya nerds PunkS7yle is offline
    MemberRank
    Feb 2010 Join Date
    1,448Posts

    Re: [How To]Send items to your character. Edit them. Add titles

    Oh forgot about those.

  13. #13
    Apprentice med1 is offline
    MemberRank
    Aug 2012 Join Date
    15Posts

    Re: [How To]Send items to your character. Edit them. Add titles

    Quote Originally Posted by PunkS7yle View Post

    Now you want to edit these items.
    • Load up the Item table in SMSS, you'll find all the items and gold for all the characters, you need their ID if you want to edit them later, to find a list of all your character items you can run :
      Code:
      select * from heroes..item where ownerid=yourcID
    • Find the ItemID that you wish to edit, run
      Code:
      select * from heroes..ItemAttribute where ItemID = youritemsID
    • The result should be empty or have at maximum a count of 1.If it doesn't check what stats your item already has and update accordingly.
    • If the result is empty run :
      Code:
      insert into heroes..itemattribute (itemid,Attribute,Value,Arg,arg2) values (youritemID,'type','value',0,0)
      Types I tested so far :
      'ENHANCE' : Enhances the items upgrade level, values possible : 0-15.
      'SUFFIX' : Adds a suffix enchant ( scrolls ).
      'PREFIX' : Adds a prefix enchant ( scrolls ).
      You can find suffix and prefix values inside heroesContent.db3 in the bin folder, table name EnchantInfo, looks like this - > http://i.imgur.com/bD9s02W.png , grab the EnchantClass for the value name.
    • You must run an insert statement for each new attribute you're adding to the item.
    • Once you're done it should look a little like this : http://i.imgur.com/APE6Wfz.png


    Remember, the changes won't show up until you relog your character.
    I'm sorry for being dumb but how do I open what with SMSS? Wtf?

  14. #14
    Apprentice qlingling is offline
    MemberRank
    Nov 2013 Join Date
    9Posts

    Re: How to send items to your character

    Quote Originally Posted by Ayakura View Post
    To get the item classes load up heroesContent.db3 from the Bin folder into sqliteBrowser or navicat
    Sorry if the question is dumb, but could you be more specific where this heroesContent.db3 is? what Bin folder we are talking about here? the one inside SQL folders or the vindictus client bin folders? could you give the path to us?

  15. #15
    Proficient Member WAMVN is offline
    MemberRank
    May 2012 Join Date
    151Posts

    Re: How to send items to your character

    Quote Originally Posted by qlingling View Post
    Sorry if the question is dumb, but could you be more specific where this heroesContent.db3 is? what Bin folder we are talking about here? the one inside SQL folders or the vindictus client bin folders? could you give the path to us?
    MabinogiHeroes\server\zh-tw-x-gm\Bin



Page 1 of 6 123456 LastLast

Advertisement