Find
You are in a soda machine
If you have 10 pennies you can use me to get soda! Unfortunately for you the soda is randomly determined, but you shouldn't care anyone because soda is soda and soad is good.
use soda machine
Created by
Chaotic Bob
, last updated 31 Jan 2015
Code
if target of use then checkcash;
##checkcash:
var $cust to $init_obj;
var $monx to $cust's worth;
if $monx > 10 then dispense else nocando;
##dispense:
subtract 25 from $monx;
set $cust's worth to $monx;
print "[$cust] inserts 10 pennies into [$actor]";
var $sod to (rootbeer, pepsi, sprite, lemonade);
new $sod;
print "[$actor] dispenses [$new_id]";
set $new_id's material to "_soda_";
relook $loc;
##nocando:
print "[$cust] does not appear to have enough money";
a material called soda