Ok, I need to know how to find thevalues of tiles on pics1.png:
NPC Code:
NPC Code:
function laydetail() {
brick={0x8A9, 0x8AA};
tiles[px,py] = brick[0];
tiles[px2,py2] = brick[1];
updateboard px-1,py-1,3,3;
updateboard px2-1,py2-1,3,3;
}
The part above in bold is what i need to know how to find ... Those are for the two tiles at the top of the castle stairs. I want to know how to find the value like that for any tile on pics1.png ...
Please help ...