circle-3.5/bin/
circle-3.5/cnf/
circle-3.5/lib/
circle-3.5/lib/etc/
circle-3.5/lib/house/
circle-3.5/lib/misc/
circle-3.5/lib/plralias/A-E/
circle-3.5/lib/plralias/F-J/
circle-3.5/lib/plralias/K-O/
circle-3.5/lib/plralias/P-T/
circle-3.5/lib/plralias/U-Z/
circle-3.5/lib/plralias/ZZZ/
circle-3.5/lib/plrobjs/
circle-3.5/lib/plrobjs/A-E/
circle-3.5/lib/plrobjs/F-J/
circle-3.5/lib/plrobjs/K-O/
circle-3.5/lib/plrobjs/P-T/
circle-3.5/lib/plrobjs/U-Z/
circle-3.5/lib/plrobjs/ZZZ/
circle-3.5/lib/plrvars/A-E/
circle-3.5/lib/plrvars/F-J/
circle-3.5/lib/plrvars/K-O/
circle-3.5/lib/plrvars/P-T/
circle-3.5/lib/plrvars/U-Z/
circle-3.5/lib/text/hedit/
circle-3.5/lib/text/help/
circle-3.5/log/
circle-3.5/src/doc/
#4501
player entering room -> tell story~
0 g 100
~
if %actor.is_pc%
  wait 1
  say Can you help us, %actor.name%?
  wait 1
  say An evil ogre holds us all hostage and blocks the road to help.
  say If you slay it I'll give you all the coins we can spare.
  wait 1 s
  say Bring me the ears as proof.
end
~
#4502
player kills ogre -> load ears~
0 f 100
~
* load the ears
%load% obj 4512 
~
#4503
player gives ears -> reward player~
0 j 100
~
* check if this was indeed the ears
if %object.vnum%==4512
wait 1
say Thank you, %actor.name%
%send% %actor% %self.name% gives you 30 gold pieces.
%echoaround% %actor% %actor.name% is rewarded for his valor.
nop %actor.gold(30)%
wait 5
junk ears
else
* this wasn't the ears - don't accept it
say I don't want that - bring me the ears!
return 0
end
~
$~