if  !  grep  -q  "CONFIGURED"  ${SPELL_CONFIG}
then

  message "${SPELL_COLOR}${SPELL}${DEFAULT_COLOR}: ${MESSAGE_COLOR}Now I need to know where the game data is."
  message "${QUERY_COLOR}Please enter the path to the game logs"
  message "[/usr/share/games/halflife/hlds_l/cstrike/logs]${DEFAULT_COLOR}"

  read   -t  ${PROMPT_DELAY} -e

  BASE_PATH=${REPLY:=/usr/share/games/halflife/hlds_l/cstrike/logs}
  echo  "LOG_PATH=${LOG_PATH}"  >>  ${SPELL_CONFIG}

  echo  "CONFIGURED='y'"  >>  ${SPELL_CONFIG}

fi
