Find
You are looking at many ghostly flams
These flames seem unaffected by the wind.
Created by
omenofdoom
, last updated 25 Jul 2012
Code
##tickloc:runsub ticked;
##ticked:
runsub checkhost/10;
##checkhost:
$host = $actor's host;
if $host > 0 then next1;
##next1:
if $host's material like living then next2;
##next2:
$hlth = $host's health;
if $hlth < $host's healthmax then healit else cureit;
##healit:
add 2 to $hlth;
add 2 to $host's mana;
set $host's health to $hlth;
##cureit:
set $host's health to $host's healthmax;