Find
You are looking at a modaction called healthup
This command/action/thing is for use in raising the health stat of the target. For the moment its use is mostly aimed at improving weapon. More uses later perhaps. Raise health by 5 each time.
healthup {target}
Created by
Chaotic Bob
, last updated 19 Dec 2007
Code
get $target in $loc;
runsub improve;
##improve:
var $one to $target's healthmax;
add 5 to $one;
set $target's healthmax to $one;
set $target's health to $target's healthmax;
say 'winsdeific', "[$target] looks stronger now!";