How would I change this verb to where you can press it again and you would cancel Rage?
mob/verb
Rage()
if(usr.Rage == 1)
usr << "\red You are already Raged."
else
usr.Rage = 1
usr.Strength *= 5
Thanx,
Punkrock546
Copyright © 2024 BYOND Software.
All rights reserved.
if(src.Rage)
src.Rage = 0
src.Strength = src.Strength/5
src << "You are no longer raged."
return
else
src.Rage = 1
src.Strength = src.Strength*5
src << "You explode in Rage."
return