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!

[Archlord] reading world textures (.AM1./AM2 extension)

Initiate Mage
Joined
Aug 28, 2013
Messages
1
Reaction score
0
I am currently trying to open the textures of the world files of archlord. The files are in .AM1 and .AM2 format.

I have been trying to create a quickBMS script to unpack the files to their proper, readable formats. However,there does not seem to be a valid fileheader.

This is a fragment of a .AM1 file when opened with a hexeditor:

Code:
Offset(h) 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F
00000000  4D 61 67 50 61 63 6B 20 56 65 72 20 30 2E 31 61  MagPack Ver 0.1a
00000010  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
00000020  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
00000030  00 00 0C 43 32 37 32 2C 32 37 32 2E 61 6D 66 7E  ...C272,272.amf~
00000040  69 00 00 0C 43 32 37 33 2C 32 37 32 2E 61 6D 66  i...C273,272.amf
00000050  7C 69 00 00 0C 43 32 37 34 2C 32 37 32 2E 61 6D  |i...C274,272.am
00000060  66 42 69 00 00 0C 43 32 37 35 2C 32 37 32 2E 61  fBi...C275,272.a
00000070  6D 66 5F 69 00 00 0C 43 32 37 36 2C 32 37 32 2E  mf_i...C276,272.
00000080  61 6D 66 77 69 00 00 0C 43 32 37 37 2C 32 37 32  amfwi...C277,272
00000090  2E 61 6D 66 7C 69 00 00 0C 43 32 37 38 2C 32 37  .amf|i...C278,27
000000A0  32 2E 61 6D 66 7C 69 00 00 0C 43 32 37 39 2C 32  2.amf|i...C279,2
000000B0  37 32 2E 61 6D 66 7C 69 00 00 0C 43 32 38 30 2C  72.amf|i...C280,
000000C0  32 37 32 2E 61 6D 66 7C 69 00 00 0C 43 32 38 31  272.amf|i...C281
000000D0  2C 32 37 32 2E 61 6D 66 7F 69 00 00 0C 43 32 38  ,272.amf.i...C28
000000E0  32 2C 32 37 32 2E 61 6D 66 29 69 00 00 0C 43 32  2,272.amf)i...C2
000000F0  38 33 2C 32 37 32 2E 61 6D 66 2C 69 00 00 0C 43  83,272.amf,i...C
00000100  32 38 34 2C 32 37 32 2E 61 6D 66 5B 69 00 00 0C  284,272.amf[i...
00000110  43 32 38 35 2C 32 37 32 2E 61 6D 66 71 69 00 00  C285,272.amfqi..
00000120  0C 43 32 38 36 2C 32 37 32 2E 61 6D 66 7A 69 00  .C286,272.amfzi.
A full file can be found here:

As you can see the files starts with "MagPak ver 0.1a" however google shows no results whatsoever.

Does anyone have any clue on how to make these files readable or unpack them to their proper formats?
 
Back
Top