Installation
Add the Resource
Download the package from Portal, unzip it, and put the folder in your server's resources directory:
rm_mapeditor
Do not rename the folder. The resource reads its own files by name: the catalogue, the thumbnails, the locale. A renamed folder is a resource that finds none of them.
Grant Access
Nobody can open the editor until they are allowed to. Two tiers, and the broad command ace counts as both:
# a builder: their own layouts, and nothing of anybody else's
add_ace group.builder command.map_editor allow
# every layout, and the switch that stands one up for the whole server
add_ace group.admin rm_mapeditor.admin allowOr by identifier, for one or two people without touching aces, in cfg.lua:
cfg.authorizedIdentifiers = {
['license:110000112a4b6c8'] = true,
}Both ace names are settings, not fixed strings. See Configuration.
About the Prop Pictures
The picker draws around 30000 thumbnails, packed into sprite sheets. They are not downloaded when a player joins: they arrive the first time somebody opens the picker (about 80 MB) and are cached by hash from then on, so it is one wait, once, per version.
If you would rather serve them yourself, point cfg.nui.imageBaseUrl at a host you control and copy assets/props/ across. Details in Configuration.