You are looking at a command called give

give {object} to {object}
Give an object you are carrying to an object in your current location.
eg: give the apple to the teacher

or

give {quantity} pennies to {object}
Give some or all of your pennies to an object in your current location.
eg: give 1000 pennies to the police officer

Use get to carry something and use inv to see what you are carrying.



Scripting notes
Sample for money transfers:


if second of givesmoney then thank;

##thank:
if $amount < 100 then small else big;

##small:
print "[$actor] smiles and thanks [$init_obj].";

##big:
print "[$actor] dances about the room, whoops and hollars, then grabs [$init_obj]'s hand and shakes it excitedly, 'Thank you so very much!'";
Code