ID:270700
 
mob/verb/Heal(M as mob in view())
view() << "[usr] healed [M]"
health ++


theres code it works but only heals 1 hp
how i make it 100
mob/verb/Heal(M as mob in view())
view() << "[usr] healed [M]"
health +=100


that should work o.o
++ is just a shorter way of writing += 1

In response to Yami_Marik0
ok now i got that how i make it that it only heals me not other people ?
In response to Alien link
Here's a hyperlink, Alien link.

It has everything you need.
In response to Alien link
M.health +=100