Find
You are looking at a command called cut
cut {object}
You can cut an object in half with the cut command. This is like the
copy
command, in that it make a duplicate copy object - but both half are only worth half the original value.
create a cake
cut the cake
Cowscript notes:
This makes a trigger word 'cuts'
Created by
wolis
, last updated 06 Dec 2010
Code
get $target in $loc;
if $target > 0 then chklock else fail;
##chklock:
if $pw like $target's pwd then copyit else itslocked;
##copyit:
copy $target;
say 'cuts',"[$actor] cuts [$target]";
relook $loc;
##fail:
if $counter > 0 then end else listall;
##listall:
var $click_cmd to 'cut';
var $desc_intro to "Click on the object you want to $click_cmd:
";
msg $loc,$actor,$actor,0,'force',"force:look $loc,list";