Find
You are looking at the command called kick
kick {object}
Visual interaciton with an object.
Scripting notes:
This sends out a trigger word of 'bounce' so script your object like this:
if target of bounce then iwaskicked;
##iwaskicked:
print "[$actor] breaks into many pieces";
Created by
wolis
, last updated 10 Aug 2009
Code
get $target in $loc;
if $target > 0 then breakit else fail;
##breakit:
say 'bounce',"[$actor] kicks [$target]";
##fail:
var $click_cmd to 'kick';
var $desc_intro to 'Click on the object you want to kick:
';
rem look $loc,list;
msg $loc,$actor,$actor,0,'force',"force:look $loc,list";