ForbiddenSecretTechniqueReaperDeathSeal =0
mob/sarutobi
verb
ForbiddenSecretTechniqueReaperDeathSeal()
set category = "Jutsus"
set name = "Forbidden Secret Technique: Reeaper Death Seal"
if(usr.chakra <= 200000)
usr<<"You dont have enough chakra!"
return
if(usr.firing)
usr<<"Not now."
return
if(usr.froze)
usr<<"Your frozen"
return
if(usr.Frozen)
usr<<"Your frozen"
return
if(usr.caught)
usr<<"Your captured"
return
if(usr.captured)
usr<<"Your captured"
return
if(usr.resting)
usr<<"Not while resting"
return
if(usr.meditating)
usr<<"Not while meditating"
return
if(!usr.ForbiddenSecretTechniqueReaperDeathSeal&&!usr.firing)
view()<<"<font color = blue>[usr]: Forbidden Secret Technique: Reaper Death Seal!"
usr.overlays += 'Forbidden Secret Technique Reeaper Death Seal.dmi'
del target
del src
Problem description:
I need help coding Shiki Fuujin/Reaper Death Seal, i am a new cooder i have been doing fine until i wanted to put a the Reaper Death Seal in, it kills both user and target, ther is no errors with this code -.- but is wont kill them me or the target and it wont hit anything and im not sure how to approach this /figure it out (none of the jutsu i have coded have been instant kills so...)
please help
ForbiddenSeal(mob/M in oview(1,usr))
M.health=0; M.DeathCheck(usr); usr.health=0; usr.DeathCheck(usr)