mob/Releases/verb
First_Release()
set category = "Jutsus"
usr.Handseals()
if(usr.PK==0)
usr<<"NON PK ZONE!"
return
if(usr.chakra<=100)
usr<<"Not enough chakra."
return
if(usr.ifuu==1)
usr.ifuu = 0
usr.tai = usr.Mtai
usr.overlays -= 'Reaper Base.dmi'
return
if(!usr.handseals)
return
if(usr.froze)
usr<<"Your frozen"
return
if(usr.Frozen)
usr<<"Your frozen"
return
if(usr.captured)
usr<<"Your captured"
return
if(usr.caught)
usr<<"Your captured"
return
if(usr.resting)
usr<<"Not while resting"
return
if(usr.meditating)
usr<<"Not while meditating"
return
if(usr.ifuu==1)
usr.ifuu = 0
usr.tai = usr.Mtai
usr.overlays -= 'Reaper Base.dmi'
return
else
var/oldloc = usr.loc
usr.ifuu = 1
usr.loc = locate(9,2,100)
view()<<"[usr]:..So much pain ... so much sorrow...."
sleep(50)
view()<<"[usr]:..Too much pain...."
usr.overlays+='Reaper Base.dmi'
usr.ifuu = 1
usr.tai *= 2
usr.health /=2
sleep(50)
usr.loc = oldloc
Problem description:
When i use the verb a second time it doesnt return my stats to normal look at the line with if(usr.ifuu) usr.tai = usr.Mtai
it works when i use it right after ri login but for some reason i can use it repeatedly after the first time
Click here
Click here