Item Editor

07/21/2013 00:42 nicolastyler#1
Info:
This is a ItemType.dat and MapItemIcon.Ani editor.
i've made this as some people have asked me too on [Only registered and activated users can see links. Click Here To Register...].

Features:
- View Items. (Everything about it, check preview)
- Edit Item Names and descriptions.
- Edit Item Icons.
- Compare items.
- Batch Editing.

How to use:
- Run the app as administrator. (should be forced)
- Select an item to edit from the list. (on the left)
- To edit names or descriptions, just change the textboxes. (on the right)
- To edit floor icons press the edit button (at the bottom) and select 1 or more .dds files.
- More help in the application.

Preview: (from V2)
[Only registered and activated users can see links. Click Here To Register...]

Change Log:
Version 1:
- Base app
- Can't save can only view.

Version 2:
- Added editing of names and descriptions.
- Added some help.
- Added some more item info.
- Added icon editing.
- Added icon info.
- And some small changes.

Version 3:
- Added an Item Data backup system
- Added Batch Editing
- Added Item Stats (DPS, Defence, Magic Damage, Magic Defence)

Version 4:
- Added tooltips to some controls.
- Added batch editing help.
- Fixed a bug with quality detection.
- Added more dropdown items for batch editing.

Version 5:
- Added more FAQ.
- Added item comparison.
- Fixed a bug with icon editing.

Version 6:
- Added compatibility for older conquer clients.
- Added batch icon editing.
- Fixed a bug with loading backups.
Notes:
compatibility for older conquer clients is not tested as i don't have an old client. batch icon editing is very slow and untested, please make sure you backup your files before using this.

----[Only registered and activated users can see links. Click Here To Register...]----
07/26/2013 20:20 aiurea#2
cant see the "Preview" ....
07/26/2013 21:00 NyarukoYasaka#3
Looks nice.
07/27/2013 19:21 DarkLady#4
I would like to know how to figure out what ones have the +1, so I can edit those to be easier to spot. I have first time top up so I can see them when they drop, but it's easy to miss them if your killing fast.

This program was exactly what I have been looking for, thanks +1.
07/31/2013 08:27 nicolastyler#5
@DarkLady, I made this app from your request a while back.
As for the + items, +'s to items are calculated as they drop on the floor and can not be shown or edited. There is no way, aside from hacking the game, to show them.

And yes i don't see this app as a hack, its just a file editor which happens to open conquer files.

UPDATES:
- Added editing of names and descriptions.
- Added some help.
- Added some more item info.
- Added icon editing.
- Added icon info.
- And some small changes.

More Updates:
- Added an Item Data backup system
- Added Batch Editing
- Added Item Stats (DPS, Defence, Magic Damage, Magic Defence)
08/02/2013 07:06 DarkLady#6
Thanks a lot. Yes I never miss a item when hunting , (only +1s here and there) thanks to programers like you. Keep up the good work.

I also did a scan for others interested it came back clean.

[Only registered and activated users can see links. Click Here To Register...]
08/02/2013 08:02 nicolastyler#7
Quote:
Originally Posted by DarkLady View Post
I also did a scan for others interested it came back clean.

[Only registered and activated users can see links. Click Here To Register...]
So did I... Look at my post again...
08/13/2013 16:48 █DOOP█#8
ICON editing doesn't work

and how to use Batch Editing?
08/14/2013 07:50 nicolastyler#9
i haven't added the working version as it seems like this forum section is dead. Ill add it now
08/14/2013 08:21 █DOOP█#10
thanks man this is perfect itemtype editor ^_^
08/14/2013 09:30 nicolastyler#11
New update, changes are in the first post.
08/14/2013 16:31 █DOOP█#12
Quote:
Originally Posted by nicolastyler View Post
New update, changes are in the first post.
Icon editing doesn't work same to version3
[Only registered and activated users can see links. Click Here To Register...]

can you add BATCH ICON EDIT!

TIA
08/15/2013 07:01 nicolastyler#13
Are you using a valid .dds image?

Stupid me, i found the error. I simply forgot to edit the FrameAmount of each item. V5 icon editing should work. Iv also added item comparing.

Also as you can see this section is dead and you are the only person besides me posting here.

If you want to batch edit icons use my other app. its less editable and user friendly and its very slow, but it gets the job done.
08/15/2013 09:20 █DOOP█#14
Quote:
Originally Posted by nicolastyler View Post
Are you using a valid .dds image?

Stupid me, i found the error. I simply forgot to edit the FrameAmount of each item. V5 icon editing should work. Iv also added item comparing.

Also as you can see this section is dead and you are the only person besides me posting here.

If you want to batch edit icons use my other app. its less editable and user friendly and its very slow, but it gets the job done.
not work icon edit same to version4,

and i use itemtype batch editing quality
but other gem and quest items and pack are edited
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
08/16/2013 04:17 go for it#15
well i was thinking along time ago of giving this a shoot but with better AI/logic than that
what i mean is, you may (and prolly does) cast properties as an item object
then use linq to group them with there domain, for instance xxxxx-0 up to xxxxx-10
and for a better idea you may group them with there name
ex.
Code:
var ItemsGroups =
      from item in Items
      group item by item.name;
and then later you may do something like

Code:
foreach (var ItemGroup in ItemsGroups)
  {
        //do a check here on how many items in the itemgroup, if less than 9 break, however you may not even need that check but just incase
      foreach (ItemClass item in ItemGroup)
      {
          add the prefix and stuff
      }
  }
i was also thinking about having a data grid view showing all the items and there properties, editing/adding/deleting to that data grid view then save it whenever user is done, on a separate thread not to freeze the gui

wish that was helpful, best of luck