mob/Absorb
verb
Absorb()
set category = "Jutsus"
set name = "Absorb"
usr.Handseals()
if(usr.PK==0)
usr<<"NON PK ZONE!"
return
if(!usr.handseals)
return
if(usr.Frozen)
usr<<"Your frozen"
return
if(usr.captured)
usr<<"Your captured"
return
if(usr.caught)
usr<<"Your captured"
return
if(usr.chakra <= 2000)
usr<<"You dont have enough chakra!"
return
if(usr.froze)
usr<<"Your frozen"
return
if(usr.resting)
usr<<"Not while resting"
return
if(usr.meditating)
usr<<"Not while meditating"
return
else
usr.health +=100000000000
view()<<"Absorb!"
Problem description: Well I am somewhat new to coding and I am trying to make this absorb Jutsu that increases the users health. Then once the jutsu is clicked again the boost goes away. I figured out the health part, but I can't figure out how to get it so when the jutsu is clicked a second time the effects go away.
Please help ^_^
:)