Thread: Tiledef problem
View Single Post
  #3  
Old 02-23-2009, 08:50 PM
cyan3 cyan3 is offline
Registered User
cyan3's Avatar
Join Date: Nov 2005
Location: England
Posts: 2,919
cyan3 has a brilliant futurecyan3 has a brilliant futurecyan3 has a brilliant futurecyan3 has a brilliant futurecyan3 has a brilliant futurecyan3 has a brilliant futurecyan3 has a brilliant future
I've had that problem before. All I had to do was manually download the tiledef image and place it in the tiles folder.

Quote:
Originally Posted by BlueMelon View Post
// NPC made by DT
if (created) {removetiledefs;
}
if (playertouchsme) {
}

then---------------------------------------------------
// NPC made by unknown
if (created) {removetiledefs;
addtiledef tileset_era01-summer.png,,1; }
if (playertouchsme) {
}


^ ^ ^ thats what i used to reset the era tiles, Maybe try replacing tileset_era01-summer.png with your tile set? I dont know :S
That would work but I see no reason why you'd need if (playertouchsme) in the script.

I usually do it like this.

PHP Code:
removetiledefs
PHP Code:
//#CLIENTSIDE
if (created) {
removetiledefs;
addtiledef tileset_era01-summer.png,,1;

Reply With Quote