ID:263638
 
Code:
Eternal Darkness.dme:23: unterminated text expression (expecting ])
Eternal Darkness.dme:23:error: end of file: expected )
Eternal Darkness.dme:23:error: end of file: expected }
Level up.dm:5:error: location of top-most unmatched {


Problem description:

I was screwing with Skills, i thought I could put Skill verbs into a Skill tab, however It gave me 3 errors with DME and 1 w/ level up.dm however, like I once was told it sometimes isn't in the place specified, I Deleted all the Skill stuff and it still isn't gone. whats wrong??
You havn't provided any coding, simply errors that occured from a piece of code you wrote. Thus, we aren't going to be able to help you with your problem.
When the compiler gives an error in the .dme file, generally that means it's on the LAST line of the .dm file specified on that line of the .dme file.
In response to Reinhartstar
ok, I had no idea where it is, ok? and I am possitive you don't to read an ass load of code trying to find the problem (sorry if it sounds like I'm being rude). and Garthor, what do you mean? it shows me nothing. it highlights nothing, just shows me the end..
In response to Teh_Zero
You've got an [ in a text string without a corresponding ].
In response to Garthor
Thank you, i fixed that but now it says that these variables are undefined, however they are WAAAAAAAAAAAAAY back up in my log in code


slime
icon ='slime.dmi'
HP = 20
exp = 20
attack = 5
defence =5
In response to Teh_Zero
That would be because you defined those variables in mob/Login(). outside of mob/Login(), they have no meaning.

Alternatively: you defined them in mob/player, and outside mob/player, they have no meaning.