Find
You are looking at a command called call
call {text} or {object}
You can call for an object anywhere in cow. Some objects respond to your call and come running to you.
eg
call for the courrier
Created by
wolis
, last updated 03 Apr 2009
Code
if '$cmd_text' eq 'call' then sub1 else sub2;
##sub1:
msg 0,$actor,$target,0,'calls',"you can hear [$actor] calling out $cmd_text",$actor,"$cmd_text";
##sub2:
get $firstword,$target;
if $target > 0 then callit else sub1;
##callit:
msg 0,$actor,$target,0,'calls',"you can hear [$actor] calling for [$target]",$actor,"$cmd_text";