mob
verb
Lightsaber_Attack(mob/M in oview(2))
set category = "Skills"
set name = "Lightsaber Attack"
if(M.ko >= 1) usr<<"[M] is already knocked out." // Just in case M is not a human.
else
view()<<"<font color = blue>[usr] attempts to attack [M] with Their Lightsaber."
if(prob(66)) view()<< "[M] blocks [usr]'s attack."
M.Life -= 0
else //Error Right Here!!!
M.Life -= usr.punchstrength
oview(7) <<"<font color = azure>[usr.name] attacks [M.name]with a Lightsaber"
M.Die()
Problem description:It says Char Moves + Signartues.dm:58: Inconsistent indentation. 4 times,any help?
As you can see it's a preaty basic attack code.
Ok, replace all the indents. If they are lined up correctly it should work.