Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extract item names from Tibia.dat #12

Open
mathiasbynens opened this issue Jun 8, 2015 · 2 comments
Open

Extract item names from Tibia.dat #12

mathiasbynens opened this issue Jun 8, 2015 · 2 comments

Comments

@mathiasbynens
Copy link

Tibia.dat contains useful info about items that can be sold through the in-game market. E.g.:

{
    "boots": [
        {
            "decID": 813,
            "isStackable": false,
            "name": "terra boots",
            "hexID": "2D 03"
        },
        {
            "decID": 818,
            "isStackable": false,
            "name": "magma boots",
            "hexID": "32 03"
        },
        {
            "decID": 819,
            "isStackable": false,
            "name": "glacier shoes",
            "hexID": "33 03"
        },

A tool to extract this data would be useful. (I used to have a custom Python script that supported the data format up until version 10.56, but 10.57 changed the structure a bit.)

@mathiasbynens mathiasbynens changed the title Extract items from Tibia.dat Extract item names from Tibia.dat Jun 8, 2015
@gpedro
Copy link
Member

gpedro commented Jun 8, 2015

this is a great idea, bro. Thanks for suggestion. If you can publish your custom python script, it would be cool to do a legacy version ( < 10.57)
cc @Mignari

@Mignari
Copy link

Mignari commented Jun 8, 2015

If we want to read only items the same code can be used for >= 10.10

https://github.com/ottools/ItemEditor/blob/master/Source/PluginThree/Plugin.cs#L183

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants