mob
verb
attack(mob/M as mob in oview(1))
usr.experience++
experience += 10
usr.level_check()
usr << "You attack [M]!"
oview() << "[usr] attacks [M]!"
var/damage = rand(1,10)
world << "[damage] damage!"
M:HP -= damage
M:DeathCheck()
Problem description:
I was adding procs to my game and when i compiled the only problem was the verbs. it said that that the "verb" part needed an end statement, i tried alot of things to fix it none worked and it would just cause other problems.
Show the code directly above the attack verb.