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!

[ Can Help Change Visual Set Creator ]

Newbie Spellweaver
Joined
Jun 5, 2023
Messages
49
Reaction score
10
Hello I just finish the UI cabal from ragezone and who can help me or share something with this?
I want to replace set when we click create char.
i see inside dll use byte so where we can replace and convert idx item to byte?

Thanks all and have a nice day!
 

Attachments

You must be registered for see attachments list
Joined
Aug 3, 2011
Messages
963
Reaction score
507
C++:
BYTE WA_ITEMS[20] = {
    0xCF, 0x03, 0x00, 0x00,     //Suit - 0x03CF = Item ID: 975
    0xD5, 0x03, 0x00, 0x00,     //Gloves - 0x03D5 = Item ID: 981
    0xDB, 0x03 0x00, 0x00,     //Boots - 0x03DB = Item ID: 987
    0x66, 0x00, 0x00, 0x00,    //Left Handed Weapon - 0x0066 = Item ID: 102
    0x00, 0x00, 0x00, 0x00,   //Right Handed Weapon - 0x0000 = Item ID: 0
};
The explanation is commented on every row of bytes. Convert the hex bytes into integers for the item id.
 
Upvote 0
Newbie Spellweaver
Joined
Jun 5, 2023
Messages
49
Reaction score
10
C++:
BYTE WA_ITEMS[20] = {
    0xCF, 0x03, 0x00, 0x00,     //Suit - 0x03CF = Item ID: 975
    0xD5, 0x03, 0x00, 0x00,     //Gloves - 0x03D5 = Item ID: 981
    0xDB, 0x03 0x00, 0x00,     //Boots - 0x03DB = Item ID: 987
    0x66, 0x00, 0x00, 0x00,    //Left Handed Weapon - 0x0066 = Item ID: 102
    0x00, 0x00, 0x00, 0x00,   //Right Handed Weapon - 0x0000 = Item ID: 0
};
The explanation is commented on every row of bytes. Convert the hex bytes into integers for the item id.
i try to search here why it's not same like you give me?
 
Upvote 0
Back
Top