Quote:
Originally Posted by patrickp2p
Function addtiledef not found at line 3 in script of npcs[1] (in level bellview.gmap at pos (46, 20))
|
It's being caused by the npc in your level.
Your script probably looks something like this:
PHP Code:
if (created) {
addtiledef tileset.png,,0;
}
To fix it you can either a) delete the npc or b) put //#CLIENTSIDE at the top of the script.
b) Looks like this:
PHP Code:
//#CLIENTSIDE
if (created) {
addtiledef tileset.png,,0;
}