-
Notifications
You must be signed in to change notification settings - Fork 0
Renaming Map Locations
It is possible to change the names of certain locations on a map! For instance, the city "Kavala" on Altis could be renamed to "Spirit of the Winds" and would then be shown as that on the player's map.
First we need to find out the name, and the classname of the place that we want to rename. If you're looking to change the name of an Altis location, for instance, then look for the altis_map.pbo
file, under Arma 3/Addons/altis_map.pbo
and check the config file for the Names
class. All the location names are inside that.
Note: You'll need to convert the
.bin
file to a readable format using the "CfgConvert" tool from "Arma 3 Tools" (download from Steam).
In 2bnb-extras/addons/map_locations
you'll find an *.hpp
file with the name of the map you want to make changes on. In the file, and inside the Name
class, you can add renames to the map locations. These must be in this format:
class Kavala {
name="My new awesome name!";
};
If the *.hpp
file for the relevant map doesn't exist yet, make one. The file MUST contain:
class [map name] : CAWorld {
class Names {
class [location classname] {
name="[new name of location]";
};
};
};
Then in the config.cpp
file, you MUST put a reference to the file you just made:
class CfgWorlds {
class CAWorld;
#include "altis.hpp";
#include "[map name].hpp";
};
(Replace all square brackets []
with the appropriate details)
If you have any questions whatsoever, feel free to let @Mod Developer
s know on the Discord server.
Use the search bar above /\ or the links below \/
Admin Messaging
AI Interactions
Deploy
Direct Speech Switching
Map Noise Reduction
Pass Magazine
Screenshot Mode
Barracks Function
Force Respawn & Respawn Timer
List Dead Players
Mission Whitelist
Supply Drop
Build Script
Custom Images
Custom Patches
Renaming Map Locations