gitextract_ui58d88c/ ├── .editorconfig ├── .gitignore ├── .readthedocs.yaml ├── Makefile ├── README.md ├── _extensions/ │ └── unturned_lexer.py ├── _static/ │ ├── css/ │ │ ├── custom.css │ │ └── toctree_collapse.css │ └── js/ │ └── toctree_collapse.js ├── about/ │ ├── getting-started.rst │ ├── launch-options.rst │ └── steam-workshop.rst ├── assets/ │ ├── airdrop-asset.rst │ ├── animal-asset.rst │ ├── animation.rst │ ├── asset-bundle-custom-data.rst │ ├── asset-bundles.rst │ ├── asset-definitions.rst │ ├── asset-validation.rst │ ├── character-mesh-replacement.rst │ ├── crafting-asset.rst │ ├── crafting-blacklist-asset.rst │ ├── curated-items.rst │ ├── data-file-format.rst │ ├── effect-asset.rst │ ├── foliage-asset.rst │ ├── layers.rst │ ├── level-asset.rst │ ├── material-palette-asset.rst │ ├── mod-hooks.rst │ ├── mythical-asset.rst │ ├── object-asset.rst │ ├── outfit-asset.rst │ ├── physics-material-asset.rst │ ├── redirector-asset.rst │ ├── resource-asset.rst │ ├── road-asset.rst │ ├── server-browser-curation-asset.rst │ ├── spawn-asset.rst │ ├── stereo-song-asset.rst │ ├── tag-asset.rst │ ├── unity-upgrade.rst │ ├── vehicle-asset.rst │ ├── vehicle-physics-profile-asset.rst │ ├── vehicle-redirector-asset.rst │ ├── weather-asset.rst │ └── zombie-difficulty-asset.rst ├── conf.py ├── data/ │ ├── asset-ptr.rst │ ├── bitmask.rst │ ├── built-in-types.rst │ ├── color.rst │ ├── enum/ │ │ ├── eassettype.rst │ │ ├── ebatterymode.rst │ │ ├── eitemorigin.rst │ │ ├── eitemrarity.rst │ │ ├── eitemtype.rst │ │ ├── elightingvision.rst │ │ ├── enpcholiday.rst │ │ ├── eobjectchart.rst │ │ ├── eobjecttype.rst │ │ ├── eslottype.rst │ │ └── index.rst │ ├── flag.rst │ ├── guid.rst │ ├── master-bundle-ptr.rst │ ├── rich-text.rst │ ├── struct/ │ │ ├── index.rst │ │ └── playerspotlightconfig.rst │ └── vector3.rst ├── img/ │ └── WorkshopMapIDs.csv ├── index.rst ├── items/ │ ├── actions.rst │ ├── arrest-end-asset.rst │ ├── arrest-start-asset.rst │ ├── backpack-asset.rst │ ├── bag-asset.rst │ ├── barrel-asset.rst │ ├── barricade-asset.rst │ ├── beacon-asset.rst │ ├── blueprints.rst │ ├── blueprints_inputitem.rst │ ├── blueprints_outputitem.rst │ ├── box-asset.rst │ ├── caliber-asset.rst │ ├── charge-asset.rst │ ├── clothing-asset.rst │ ├── cloud-asset.rst │ ├── consumeable-asset.rst │ ├── detonator-asset.rst │ ├── farm-asset.rst │ ├── filter-asset.rst │ ├── fisher-asset.rst │ ├── fishing-catchable-properties.rst │ ├── food-asset.rst │ ├── fuel-asset.rst │ ├── gear-asset.rst │ ├── generator-asset.rst │ ├── glasses-asset.rst │ ├── grip-asset.rst │ ├── grower-asset.rst │ ├── gun-asset.rst │ ├── hat-asset.rst │ ├── introduction.rst │ ├── key-asset.rst │ ├── library-asset.rst │ ├── magazine-asset.rst │ ├── map-asset.rst │ ├── mask-asset.rst │ ├── medical-asset.rst │ ├── melee-asset.rst │ ├── oil-pump-asset.rst │ ├── optic-asset.rst │ ├── pants-asset.rst │ ├── placeable-asset.rst │ ├── refill-asset.rst │ ├── sentry-asset.rst │ ├── shirt-asset.rst │ ├── sight-asset.rst │ ├── storage-asset.rst │ ├── structure-asset.rst │ ├── supply-asset.rst │ ├── tactical-asset.rst │ ├── tank-asset.rst │ ├── throwable-asset.rst │ ├── tire-asset.rst │ ├── tool-asset.rst │ ├── trap-asset.rst │ ├── vehicle-lockpick-tool-asset.rst │ ├── vehicle-paint-tool-asset.rst │ ├── vehicle-repair-tool-asset.rst │ ├── vest-asset.rst │ ├── water-asset.rst │ └── weapon-asset.rst ├── make.bat ├── mapping/ │ ├── charts.rst │ ├── curated-maps.rst │ ├── editor-asset-redirectors.rst │ ├── favorite-searches.rst │ ├── level-batching.rst │ ├── level-config.rst │ └── manual-object-culling.rst ├── npcs/ │ ├── conditions.rst │ ├── currency-asset.rst │ ├── dialogue-asset.rst │ ├── introduction.rst │ ├── npc-asset.rst │ ├── quest-asset.rst │ ├── rewards-list-asset.rst │ ├── rewards.rst │ └── vendor-asset.rst ├── requirements.in ├── requirements.txt ├── sdg/ │ ├── dat-editing-code.rst │ ├── hosting-servers-using-private-workshop-files.rst │ ├── legacy-id-availability.rst │ ├── source-code.rst │ ├── test-steam-items.rst │ ├── unity-project.rst │ └── using-git.rst └── servers/ ├── bookmark-host.rst ├── command-io.rst ├── debugging-exceptions.rst ├── dedicated-workshop-update-monitor.rst ├── fake-ip.rst ├── game-server-login-tokens.rst ├── glazier.rst ├── openmod.rst ├── port-forwarding.rst ├── rocket.rst ├── server-auto-restart.rst ├── server-browser-curation.rst ├── server-codes.rst ├── server-configuration.rst ├── server-hosting-rules.rst ├── server-hosting.rst ├── server-update-notifications.rst └── steamcmd.rst