Find
You are looking at a command called catch
catch {object}
Catch an object that was thrown eg
catch
the ball
You end up holding the thing you caught.
Created by
wolis
, last updated 29 Apr 2007
Code
get $target in $loc;
if $target > 0 then catchit else fail;
##catchit:
set $target's host to $actor;
set $target's hosthow to 'by';
set $target's pose to 'held';
say 'catches',"[$actor] catches [$target]";
rem msg $loc,$actor,0,0,'force',"force:look $loc";
relook $loc;
##fail:
say 'drops',"[$actor] tries to catch [$target] but misses it";