mob
proc
Createclones()
var/mob/clone = new(usr.loc)
clone.icon=usr.icon
clone.HP = 1
Deathcheck()
if (HP <= 0)
world << "[src] died!"
src.loc = locate (2,2,1)
src.HP = src.MaxHP
src.MP = src.MaxMP
verb
Bunshin()
Createclones()
Fire_Dragons_Iron_Fist()
set category = "Battle"
if (usr.MP >= 10)
var/obj/Firefist/F = new(usr)
walk(F,usr.dir,2)
usr.MP -= 10
usr.SlayerExp += 0.1
usr.Slayercheck()
sleep(30)
del F
else
usr << "You don't have enough Mana Points."
return
Can anyone help me out with this? I would really appreciate it :3.
I'm a bit tired, so I may have made an indentation error or something, but this should work.