ID:147621
 
this error is called Quest For Naruto.dme:21: unterminated text (expecting ")

help plz

// DM Environment file for Quest For Naruto.dme.
// All manual changes should be made outside the BEGIN_ and END_ blocks.
// New source code should be placed in .dm files: choose File/New --> Code File.

// BEGIN_INTERNALS
// END_INTERNALS
// BEGIN_FILE_DIR
#define FILE_DIR .
#define FILE_DIR "players"
#define FILE_DIR "players/g"
// END_FILE_DIR

// BEGIN_PREFERENCES
// END_PREFERENCES

// BEGIN_INCLUDE
#include "GM.dm"
#include "Level UP.dm"
#include "Login.dm"
#include "Npc Walk & Attack.dm"
#include "Pet code.dm"<<< thats where the error is help
#include "Potion.dm"
#include "Turfs.dm"
#include "C:\Documents and Settings\Matt\Desktop\Magic.dm"
// END_INCLUDE
Look in the file Pet Code.dm. Somewhere in there you have a quoted string without ending quotes. Something like this:
    // here is some code
var/something = "This is a quoted string
// more code below...

See that the string doesn't have a quote at the end? Look for something like that.