Try this script:
prontera,160,182,5 script Test NPC 123,{
npctalk "Hi there!";
end;
OnInit:
startnpctimer;
npcspeed 200;
end;
OnTimer5000:
npcwalkto 160,160;
end;
OnTimer15000:
npcwalkto 160,182;
end;
OnTimer20000:
stopnpctimer;
initnpctimer;
end;
}
You can have a clickable moving NPC, no problem with that. But if you want it to look like a player (and probably you do, because regular NPC sprites are not animated, so they won't walk, just slide), it can only be clicked with shift pressed.
But like I said before, currently it is not possible to assign a player sprite to NPC. You need to modify source code to allow that. Then it looks really cool. I like it Code used to make this screenshot is just for testing purposes, so it's not usable in a real server, sorry.