move() move's the npc not necessarily the showimg/findimg it creates. You can attach the findimg to the npc like this:
PHP Code:
//#CLIENTSIDE
function onCreated() {
with (findimg(200)) {
image = "block.png";
x = thiso.x;
y = thiso.y;
// The magic 'attach' command you want:
attachtoowner = true;
}
move(0, 10, 1.6, 0);
}