Find
You are looking at a command called stick
stick {object} on {object}
Use this command hen you want to stick one object on another.
eg:
stick the note on the door
This is similar to
put
with the added advantege of posing the object as 'stuck' (save you putting it on then poseing it as stuck).
scripting note:
This sends out the trigger word of 'sticks'
Created by
wolis
, last updated 13 Dec 2008
Code
get $target,$rel,$second in $loc,$loc;
if $target > 0 then trysecond else fail1;
##trysecond:
if $second > 0 then continue else fail2;
##continue:
clear $target,xyz;
set $target's host to $second;
set $target's hosthow to "$rel";
set $target's pose to "stuck";
say 'sticks',"[$actor] stuck [$target] $rel [$second]";
relook $loc;
##fail1:
var $click_cmd to 'stick';
var $click_mid to 'on zzzzz';
var $desc_intro to 'Click on the object you want to stick on something:
';
msg $loc,$actor,$actor,0,'force',"force:look $loc,list";
##fail2:
var $click_cmd to "stick $target on ";
var $desc_intro to 'Click on the object you want to stick it on:
';
msg $loc,$actor,$actor,0,'force',"force:look $loc,list";