Find
You are in a bartender called Jerry
Jerry came to the Drunken Dragon Inn when it first opened and has been working there ever since. He can make a wide assortment of beverages.
If you are interested, try
buy
to choose your order, then wait and Gertrude will get it for you shortly.
Jerry might know a few rumours. Try
talk to jerry
.
Created by
thorn
, last updated 19 Jul 2012
Code
if reacting to pour then pours;
if target of talk then talked;
if reacting to say then getsay;
##pours:
$worth = $target's worth;
$name = $init_obj's name;
$class = $init_obj's class;
$extra = "";
copy $target;
set $new_id's loc to $loc;
set $new_id's extra to $extra;
set $new_id's worth to 0;
set $target's worth to $worth;
relook $loc;
$target = $new_id;
say 'poured',"[$actor] pours [$new_id]";
say 'msg',"Thorn will continue coding this later...";
##talked:
find $actor,'rumours';
find $found_id,random;
$rumour = $found_id's info;
say 'msg',"Jerry says,'I once overheard: $rumour";
##getsay:
// add to rumours;
find $actor,'rumours';
new $init_obj;
set $new_id's info to $init_msg;
set $new_id's loc to $found_id;
set $new_id's host to $new_id;
set $new_id's pose to 'hidden';
// remove a random rumour;
find $found_id,random;
set $found_id's loc to 0;
the pouch
the rumours