ID:145461
 
Code:My DME problem


Problem description:When i click compile this error pop's up and i double click it and it pops up the DME for my coding but it dont have the normal black outlining the problem but here's the problem it says it has
Harry Potter.dme:43: unterminated text (expecting")


That means you're missing and end " somewhere, probably on the line above the one specified, or on that line. Show the code around that line please.
In response to Pyro_dragons
problem is, it didnt specify the area so ill just give ya the whole thing
// BEGIN_INTERNALS
// END_INTERNALS
// BEGIN_FILE_DIR
#define FILE_DIR .
#define FILE_DIR "Attributes"
#define FILE_DIR "backup"
#define FILE_DIR "Commands"
#define FILE_DIR "icons"
#define FILE_DIR "icons/Mobs"
#define FILE_DIR "icons/Objects"
#define FILE_DIR "icons/Turfs"
#define FILE_DIR "System"
// END_FILE_DIR

// BEGIN_PREFERENCES
#define DEBUG
// END_PREFERENCES

// BEGIN_INCLUDE
#include "bank.dm"
#include "Codes.dm"
#include "daynightweathersystem.dm"
#include "Harry Potter.dm"
#include "icon code.dm"
#include "Implementation.dm"
#include "Implementation2.dm"
#include "Login().dm"
#include "login.dm"
#include "lumonosity.dm"
#include "Spells.dm"
#include "teleport.dm"
#include "Map.dmp"
#include "Attributes\Mob Attributes.dm"
#include "Attributes\Procs.dm"
#include "Attributes\Stat Panel.dm"
#include "Attributes\World Attributes.dm"
#include "Commands\Misc Commands.dm"
#include "System\Admin.dm"
// END_INCLUDE
In response to VolksBlade
cant find the problem eh?
In response to VolksBlade
Which is line 43? Highlight it or something.
In response to Pyro_dragons
I cant im not a coder and it didnt highlight anything when i doubleclicked it
In response to VolksBlade
// DM Environment file for Harry Potter.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 "Attributes"
#define FILE_DIR "backup"
#define FILE_DIR "Commands"
#define FILE_DIR "icons"
#define FILE_DIR "icons/Mobs"
#define FILE_DIR "icons/Objects"
#define FILE_DIR "icons/Turfs"
#define FILE_DIR "System"
// END_FILE_DIR

// BEGIN_PREFERENCES
#define DEBUG
// END_PREFERENCES

// BEGIN_INCLUDE
#include "bank.dm"
#include "Codes.dm"
#include "daynightweathersystem.dm"
#include "Harry Potter.dm"
#include "icon code.dm"
#include "Implementation.dm"
#include "Implementation2.dm"
#include "Login().dm"
#include "login.dm"
#include "lumonosity.dm"
#include "Spells.dm"
#include "teleport.dm"
#include "Map.dmp"
#include "Attributes\Mob Attributes.dm"
#include "Attributes\Procs.dm"
#include "Attributes\Stat Panel.dm"
#include "Attributes\World Attributes.dm"
#include "Commands\Misc Commands.dm"
#include "System\Admin.dm"
// END_INCLUDE
[problem line]
In response to Pyro_dragons
When there's an unterminated text compile error I've never seen it point to any relevant lines, but rather the .dme file's contents. The error is somewhere within the game. To the author, go through your code and pay very close attention to it, make sure there are the right amount of ", {}, and ()'s.
In response to VolksBlade
#define FILE_DIR .


What is this? Maybe you need the " around it. I don't have any idea.
In response to Pyro_dragons
around it how?
In response to VolksBlade
Volks, read my post. That's not the problem.
In response to Artemio
problem of that is my auther is the coder and my coder has pretty much vanished..im thinking he blocked my msn but he's been painting houses so i dont know.

all i know is that the problem is AFTER
// END_INCLUDE
In response to VolksBlade
Look, you need to read my post. The problem is not within the .dme file, whatever the compiler may say.
In response to Artemio
i Read your post and i cant update ANYTHING unless the problem is solved so far with the problem ive added a day/night system AND a bank system and i need to try it out, you guys are the professional's i posted what it said was the problem and experianced coder's like you guys/wemon cant figure it out..if you guys cant figure it out neither can i since i code for crap.

would clean compile work?
In response to Artemio
Get on MSN
In response to VolksBlade
Listen, if you can't code, why bother posting on these forums? We can figure it out, and I've given you a way to do it. You can't rightfully put the blame on us, you expect us to give you this 100%-easy-to-do solution without providing hardly anything, and that's not right. If you can't program in DM, either learn or don't post on these forums until you can learn to fix things and provide information properly.
In response to Artemio
Is everybody rampaging the Developer forum all of a sudden?
Volks, it has NOTHING to do with the .dme . There's an error in one of your .dm (NORMAL coding files) where you forgot the close a text string.
Thus,for example, you did this:
world<<"Hiya


See? You forgot the close it. Now look where it could be.