ID:266630
 
how do you make it so when a the usr has to double there health to get off a planet?
Thanks for reading.

-Kappa the Imp

mob/var/health = 10
mob/var/max_health = 10
mob/verb/doublemyhealthbecuaseimadbzer()
usr.health *= 2
usr << "your health is doubled becusae your a dbzer!"
mob/verb/getoffplanetgoku500becuaseimadber()
if(usr.health == usr.max_health*2)
//get the hell off planet goku500
else
usr << "you need to be ssj goku 500000+1 to get off the planet"
return