mob/proc
Lock_Movement(mob/M as mob)
M.movement_locked = 1
usr.movement_used = 1
Unlock_Movement(mob/M as mob)
M.movement_locked = 0
M.movement_used = 0
Problem description:
Proc.dm:1:error: mob: expected end of statement
I keep on trying to debug this coding, but everytime I uncheck the box of the dm file it will go to my turf dm and say the same thing giving me this error
Turf.dm:1:error: turf: expected end of statement
I have coded alot of games before and this is the first time its happend, please help me.
When I get this error its often because I forget to close brackets in an if or looping statement because I was using a proc as one of the conditions, like:
So have a look to see if you have done the same! :)