Added FINAL_RELEASE.rar v1.0F
Link: https://github.com/VD1988/MuClientTo...eases/tag/1.0F
Thank you very much!
does this tool can decrypt, enc.att?
It can dec&enc .att .map .obj files. (binary files, not friendly for user/reader)
I suggest using WorldEditor to work with these files instead.
Project default (and ONLY) build setting:
- VS2019
- Windows 10
- x86 (Win32)
- Release (speed optimize)
You may need VS2015/17/19/...
or VC++ redistributable packages.
void MuCrypto::MapFileDecrypt(BYTE * buf, size_t len)
{
constexpr static BYTE key[] { _MU_MAP_FILE_KEY_ };
BYTE seed = 0x5E;
for (size_t i = 0; i < len; i++)
{
BYTE temp = buf[i];
buf[i] ^= key[i % 16];
buf[i] -= seed;
seed = temp + 0x3D;
}
}
this one?
How to implement Temple of Arnil (Map ,Map name in corner and monsters ?)
Nice project. Does anyone have Item.txt of Webzen Mu S16 Part 1-3? With Manticore and Silver Heart Weapons?
@solarismu can you helpme? i'm trying to convert itemsettype.bmd of new season...this season have new lines to new sets...
but when i try convert, all lines after item_idx = 255 are coming with item_idx = 0+ (256 = 0 / 257 = 1 / 258 = 2 +++)
can you help me solve this?
Fixed. Changed idx BYTE->WORD. Thanks for the test.
https://github.com/VD1988/MuClientTo...3720c61b535d06
Does the update support 16-2-2?