ID:142398
 
Code:
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

That is terrible my friend.

Click here

Click here
In response to A.T.H.K
dude i know how to code and that didnt help at all 2 thats not terrible -_-
In response to Choka
Actually, your code is pretty horrendous.
In response to Popisfizzy
how ??
In response to Choka
Sigh. I thought you were one of the last people on BYOND without a fangame.
In response to Choka
Not using boolean variables consistently, a plethora of useless return statements, use if statements where you should have else if statements, and a lot of use of usr when src should be enough.
In response to Eternal Desire
oh i have fan games...i just needed to get my inspiration back by finished at least half a game... its been awhile since i got an original one hosted so i had to get my inspiration back the same way i did the first time