A simple tile finder, press the right and the left keys to scroll through the tiles or chat a number less than 4095 and greater than 0 and you can easily find the tile you need. Script could use some improvements, I will prolly improve it later on.
NPC Code:
if (created){
disabledefmovement;
playerx = x-3;
playery = y-1.5;
timeout = 0.05;
}
if (playerchats){
if (strequals(#c,#c)){
this.tile = strtofloat(#c);
}
}
if (timeout){
updateboard ,,64,64;
if (keydown(1)){
if (this.tile != 0)
this.tile = this.tile-1;
}
if (keydown(3)){
if (this.tile != 4095)
this.tile = this.tile+1;
}
tiles[x,y] = 0x+this.tile;
setplayerprop #c,Tile: 0x#v(this.tile);
timeout = 0.05;
}