Mapper: create custom room icons

Post Reply
Medakan
Posts: 1
Joined: Sun Mar 13, 2022 1:08 am

Mapper: create custom room icons

Post by Medakan »

Want to add entirely custom icons to your map like the one below? Read on.
Untitled.png
Untitled.png (3.27 KiB) Viewed 17547 times
Download and extract the icons from https://github.com/toddfast/game-icons-net-font. Once that is done, add the font to Windows 10 by double left clicking on the .ttf file.

A font window will come up and you then click the install button.

Now in Mudlet settings (mapper tab) select the font named game-icons-net in the "2D Map Room Symbol Font" drop down box.
I then used the windows character map (run charmap) to browse for the Icon I wanted. Select the icon and press the copy button. You can also use BabelMap for this.

Back in Mudlet we set the roomID (510 in the next example) and paste the icon in the character field of the setRoomChar() function: (denoted by an * in the next example)

Code: Select all

setRoomChar(510, "*")
The function should return: true

Next, updateMap() to refresh the mapper.

Post Reply