Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Element.data RU

Newbie Spellweaver
Joined
Jun 23, 2014
Messages
49
Reaction score
1
Hello could You help me to edit the configuration file under the [Elements] Editor, sheet ITEM_TRADE_PAGE_CONFIG not opened completely, how to write the structure to the sum of bytes of all types was equal 41456
Screenshot_1.pn - Element.data  RU - RaGEZONE Forums Screenshot_2 - Element.data  RU - RaGEZONE Forums
If I adjust ITEM_TRADE_PAGE_CONFIG opens correctly offset, I ask for your help?

In the archive element and config



 

Attachments

You must be registered for see attachments list
Last edited:
Experienced Elementalist
Joined
Jul 2, 2012
Messages
221
Reaction score
21
I tried it still does not open

try that structure
Code:
type = struct ITEM_TRADE_PAGE_CONFIG {
    unsigned int id;
    namechar name[32];
    unsigned long long server_zone_mask;
    unsigned int money_type;
    unsigned int bBind;
    int min_player_level;
    int max_player_level;
    struct {
        unsigned int id_goods;
		struct {
			unsigned int id;
			int count;
		} item_required[2];
		struct {
			unsigned int id;
			int count;
		} repu_required[2];
		struct {
			unsigned int id;
			int count;
		} repu_min[2];
        int money_required;
        int devotion_required;
        unsigned int broadcast_probability;
        namechar broadcast_text[256];
    } goods[72];
}
 
Newbie Spellweaver
Joined
Jun 23, 2014
Messages
49
Reaction score
1
try that structure
Code:
type = struct ITEM_TRADE_PAGE_CONFIG {
    unsigned int id;
    namechar name[32];
    unsigned long long server_zone_mask;
    unsigned int money_type;
    unsigned int bBind;
    int min_player_level;
    int max_player_level;
    struct {
        unsigned int id_goods;
        struct {
            unsigned int id;
            int count;
        } item_required[2];
        struct {
            unsigned int id;
            int count;
        } repu_required[2];
        struct {
            unsigned int id;
            int count;
        } repu_min[2];
        int money_required;
        int devotion_required;
        unsigned int broadcast_probability;
        namechar broadcast_text[256];
    } goods[72];
}

I have 3 day scratching their heads've tried everything but I can see that does not open correctly
 
Back
Top