123456789101112131415161718 |
- //======================================================================================
- // Map Index
- //======================================================================================
- //Contains the list of maps with their respective IDs for inter-server use.
- //IDs must never change, therefore any new maps need to be added at the end,
- //and old ones must not be removed, but may be replaced.
- //Format:
- //mapname<tab>index <- specifies index for this map
- //mapname <- map will use index of previous map +1
- //Note that map index 0 is special and reserved for "error" status.
- //======================================================================================
- //Place your custom maps with a starting ID here.
- //======================================================================================
- //Example:
- //
- //mymap 1250
- //mymap-2
|