# Custom Server Changes ## No Food For a more survival-oriented experience, one can remove all food items from mpmissions: Go into the server container: ```shell docker compose exec server bash ``` Make a new directory in /profiles/custom and go into it: ```shell cd /profiles/custom mkdir no-food cd no-food ``` Generate the types.xml override file for your mpmissions type.xml: ```shell xmlstarlet ed \ -s / -t elem -n food \ -m "/types/type[category[contains(@name, 'food')]]" "/food" \ -d /types \ -r /food -v /types \ -u //nominal -v 0 \ /serverfiles/mpmissions/dayzOffline.chernarusplus/db/types.xml \ > types.xml ``` Explanation: * Start xmlstarlet in edit mode * Add a new XML node at the root named "food" * Move all types nodes where