View Single Post
  #1  
Old 12-30-2003, 03:16 AM
Goboom Goboom is offline
Pixel Monkey
Goboom's Avatar
Join Date: Dec 2001
Location: Michigan
Posts: 1,702
Goboom is on a distinguished road
Send a message via ICQ to Goboom Send a message via AIM to Goboom Send a message via MSN to Goboom Send a message via Yahoo to Goboom
Gift: Tile Finder

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;
}

__________________

Last edited by Goboom; 12-30-2003 at 03:30 AM..
Reply With Quote