Thread: Gmap Help
View Single Post
  #5  
Old 06-06-2011, 05:57 AM
fowlplay4 fowlplay4 is offline
team canada
fowlplay4's Avatar
Join Date: Jul 2004
Location: Canada
Posts: 5,200
fowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond repute
Quote:
Originally Posted by patrickp2p View Post
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;

__________________
Quote:
Reply With Quote