Please note that you need to set the size of the NPC up like that:
height=160
width=128
gfxheight=160
gfxwidth=128
That should work for you, if you have a NPC-graphic that is exact 128x4000 in size :-). Hopefully this helps you.
dagget10 wrote:Make sure your txt files height and width are counted in 1x1 pixels, not 2x2. SMBX reads those numbers as in 1x1 pixels.
If I understand you right, then you would make an 32x32 pixels NPC like this:
height=16
width=16
gfxheight=16
gfxwidth=16
That is wrong. SMBX reads the pixels right how they are. That means a 32x32 pixels NPC must be adressed as:
height=32
width=32
gfxheight=32
gfxwidth=32
Otherwise it will not be right.