/
com/planet_ink/coffee_mud/Abilities/
com/planet_ink/coffee_mud/Abilities/Common/
com/planet_ink/coffee_mud/Abilities/Diseases/
com/planet_ink/coffee_mud/Abilities/Druid/
com/planet_ink/coffee_mud/Abilities/Fighter/
com/planet_ink/coffee_mud/Abilities/Prayers/
com/planet_ink/coffee_mud/Abilities/Properties/
com/planet_ink/coffee_mud/Abilities/Skills/
com/planet_ink/coffee_mud/Abilities/Songs/
com/planet_ink/coffee_mud/Abilities/Spells/
com/planet_ink/coffee_mud/Abilities/Thief/
com/planet_ink/coffee_mud/Abilities/Traps/
com/planet_ink/coffee_mud/Areas/interfaces/
com/planet_ink/coffee_mud/Behaviors/
com/planet_ink/coffee_mud/CharClasses/interfaces/
com/planet_ink/coffee_mud/Commands/
com/planet_ink/coffee_mud/Commands/interfaces/
com/planet_ink/coffee_mud/Exits/interfaces/
com/planet_ink/coffee_mud/Items/Armor/
com/planet_ink/coffee_mud/Items/Basic/
com/planet_ink/coffee_mud/Items/MiscMagic/
com/planet_ink/coffee_mud/Items/Software/
com/planet_ink/coffee_mud/Items/Weapons/
com/planet_ink/coffee_mud/Libraries/interfaces/
com/planet_ink/coffee_mud/Locales/
com/planet_ink/coffee_mud/Locales/interfaces/
com/planet_ink/coffee_mud/MOBS/
com/planet_ink/coffee_mud/MOBS/interfaces/
com/planet_ink/coffee_mud/Races/
com/planet_ink/coffee_mud/Races/interfaces/
com/planet_ink/coffee_mud/WebMacros/
com/planet_ink/coffee_mud/WebMacros/interfaces/
com/planet_ink/coffee_mud/application/
com/planet_ink/coffee_mud/core/smtp/
com/planet_ink/siplet/applet/
lib/
resources/examples/
resources/fakedb/
resources/quests/delivery/
resources/quests/diseased/
resources/quests/drowning/
resources/quests/gobwar/
resources/quests/holidays/
resources/quests/robbed/
resources/quests/smurfocide/
resources/quests/stolen/
resources/quests/templates/
resources/quests/treasurehunt/
resources/quests/vengeance/
web/
web/admin.templates/
web/admin/images/
web/pub.templates/
web/pub/images/mxp/
web/pub/sounds/
#set the quest name
set name delivery

# this one runs every 2 mins
set wait 30
set interval 1

# dont run this quest if any other quest is running.
# this is no big deal since it repeats so often
# the high level will mean any other quests can 
# run though
set runlevel 10

#this quest always runs as a copy of itself.
#so we set the spawnable flag to true
set spawnable true

import items quests/delivery/note.cmare
#import our package

set area any
# inform the quest that it occurs anywhere

quiet
# this makes sure we don't get a final error message
# normally not necessary, but since this runs so often,
# error messages will be fairly common.

set mob ANY MASK=+INT 6
# load up any mob from the above area.  Will set a room!
# since this quest relys on random specified mobs, most 
# errors are turned off w/ quiet

give behavior Scriptable LOAD=quests/delivery/deliverer.script
# load the above behavior into the last mob (Human)

load item post-marked package
# load our secret note.  For the time being, it will sit in the room

give item
# now we give the item to our mob

set room
set mob
set area
# clear the room designation

set area any
# set any other area as a designation

set mob ANY MASK=+INT 6
# load up any other mob from any other area.  Will set a room!

give behavior Scriptable LOAD=quests/delivery/deliveree.script
# load the above behavior into the last mob (Human)

set duration 175
# the duration of the quest is 10 minutes (175 ticks).  The scripts on the mobs will
# do the rest...