tickhour('tick2',2,'%Y%m%d%H%i'):
runsub attackit;
if reacting to attack then livingguard;
##livingguard:
if $actor's health > 0 then livingguard2;
##livingguard2:
if $actor's pose == guarding then livingguard3;
##livingguard3:
if $actor's host == $target then livingattack;
##livingattack:
print "[$actor] attacks [$init_obj]";
call "attack $init_obj",2;
##attackit:
find $loc, player;
if $found_id > 0 then attackit2 else end;
##attackit2:
print "[$actor] lunges at [$found_id]";
call "attack $found_id",0;