ID:262859
 
what the hell do these errors mean
lema.dm:10:error:HP:undefined var
lema.dm:18:error:M/:/HP:undefined var
need help understanding how this gaming editor works
please some help me email me @[email protected]
You probably copy/pasted of somewhere, why? Because you're using vars but you didn't define them.

There are PLENTY good tutorials out there and the DM guide is the best place to start learning, you just have to click maybe 2 times.
In response to Mysame
I would also like to point out that this isn't a GAME EDITOR. This is a programming language. You can't get away with as much of that bull that comes with Game Maker or RPG Maker.
In response to Flerix
It can be called a game editor, considering he is referring to Dream Maker with which you can "edit" your game.
In response to Artemio
lema.dm:10:error:HP:undefined var
- Code page: lema.dm
- Line: 10
- Level: ERROR
- Item: HP
- Issue: undefined var

lema.dm:18:error:M/:/HP:undefined var
- Code page: lema.dm
- Line: 18
- Level: ERROR
- Item: M/:/HP
- Issue: undefined var

1'st error,
check if you have changed the name of the value hp is not the same as HP.
check to see you have defined "HP" at all and that it is at the correct level you are trying to access it.
EG
mob
AI
var
HP = 11
// the var HP is now only under AI and can not be accessed


2'nd error,
M/:/HP - check the name of the var I think this is a type cast EG M.HP, with a bit more code we should be able to help more.