Skip to content

Instantly share code, notes, and snippets.

@VladimirMangos
Created December 11, 2009 22:03
Show Gist options
  • Save VladimirMangos/254554 to your computer and use it in GitHub Desktop.
Save VladimirMangos/254554 to your computer and use it in GitHub Desktop.
POI icons convertion from master to 0.12
ICON_POI_BLANK ( 0) -> ICON_POI_0 (0)
GOSSIP_GUARD_BANK: ICON_POI_SMALL_HOUSE ( 5) -> ICON_POI_HOUSE ( 4)
GOSSIP_GUARD_RIDE: ICON_POI_RWHORSE (39) -> ICON_POI_RWHORSE (39)
GOSSIP_GUARD_GUILD: ICON_POI_BLUETOWER (11) -> ICON_POI_BLUETOWER (10)
default: ICON_POI_GREYTOWER ( 6) -> ICON_POI_TOWER ( 5)
0 -> 15
values from 1-15 -> 0-14
16 and later same in 0.12 and master
=== MASTER ===
//POI icons. Many more exist, list not complete.
enum Poi_Icon
{
ICON_POI_BLANK = 0, // Blank (not visible)
ICON_POI_GREY_AV_MINE = 1, // Grey mine lorry
ICON_POI_RED_AV_MINE = 2, // Red mine lorry
ICON_POI_BLUE_AV_MINE = 3, // Blue mine lorry
ICON_POI_BWTOMB = 4, // Blue and White Tomb Stone
ICON_POI_SMALL_HOUSE = 5, // Small house
ICON_POI_GREYTOWER = 6, // Grey Tower
ICON_POI_REDFLAG = 7, // Red Flag w/Yellow !
ICON_POI_TOMBSTONE = 8, // Normal tomb stone (brown)
ICON_POI_BWTOWER = 9, // Blue and White Tower
ICON_POI_REDTOWER = 10, // Red Tower
ICON_POI_BLUETOWER = 11, // Blue Tower
ICON_POI_RWTOWER = 12, // Red and White Tower
ICON_POI_REDTOMB = 13, // Red Tomb Stone
ICON_POI_RWTOMB = 14, // Red and White Tomb Stone
ICON_POI_BLUETOMB = 15, // Blue Tomb Stone
ICON_POI_16 = 16, // Grey ?
ICON_POI_17 = 17, // Blue/White ?
ICON_POI_18 = 18, // Blue ?
ICON_POI_19 = 19, // Red and White ?
ICON_POI_20 = 20, // Red ?
ICON_POI_GREYLOGS = 21, // Grey Wood Logs
ICON_POI_BWLOGS = 22, // Blue and White Wood Logs
ICON_POI_BLUELOGS = 23, // Blue Wood Logs
ICON_POI_RWLOGS = 24, // Red and White Wood Logs
ICON_POI_REDLOGS = 25, // Red Wood Logs
ICON_POI_26 = 26, // Grey ?
ICON_POI_27 = 27, // Blue and White ?
ICON_POI_28 = 28, // Blue ?
ICON_POI_29 = 29, // Red and White ?
ICON_POI_30 = 30, // Red ?
ICON_POI_GREYHOUSE = 31, // Grey House
ICON_POI_BWHOUSE = 32, // Blue and White House
ICON_POI_BLUEHOUSE = 33, // Blue House
ICON_POI_RWHOUSE = 34, // Red and White House
ICON_POI_REDHOUSE = 35, // Red House
ICON_POI_GREYHORSE = 36, // Grey Horse
ICON_POI_BWHORSE = 37, // Blue and White Horse
ICON_POI_BLUEHORSE = 38, // Blue Horse
ICON_POI_RWHORSE = 39, // Red and White Horse
ICON_POI_REDHORSE = 40 // Red Horse
};
=== 0.12 ====
//POI icons. Many more exist, list not complete.
enum Poi_Icon
{
ICON_POI_0 = 0, // Grey ?
ICON_POI_1 = 1, // Red ?
ICON_POI_2 = 2, // Blue ?
ICON_POI_BWTOMB = 3, // Blue and White Tomb Stone
ICON_POI_HOUSE = 4, // House
ICON_POI_TOWER = 5, // Tower
ICON_POI_REDFLAG = 6, // Red Flag with Yellow !
ICON_POI_TOMB = 7, // Tomb Stone
ICON_POI_BWTOWER = 8, // Blue and White Tower
ICON_POI_REDTOWER = 9, // Red Tower
ICON_POI_BLUETOWER = 10, // Blue Tower
ICON_POI_RWTOWER = 11, // Red and White Tower
ICON_POI_REDTOMB = 12, // Red Tomb Stone
ICON_POI_RWTOMB = 13, // Red and White Tomb Stone
ICON_POI_BLUETOMB = 14, // Blue Tomb Stone
ICON_POI_NOTHING = 15, // NOTHING
ICON_POI_16 = 16, // Red ?
ICON_POI_17 = 17, // Grey ?
ICON_POI_18 = 18, // Blue ?
ICON_POI_19 = 19, // Red and White ?
ICON_POI_20 = 20, // Red ?
ICON_POI_GREYLOGS = 21, // Grey Wood Logs
ICON_POI_BWLOGS = 22, // Blue and White Wood Logs
ICON_POI_BLUELOGS = 23, // Blue Wood Logs
ICON_POI_RWLOGS = 24, // Red and White Wood Logs
ICON_POI_REDLOGS = 25, // Red Wood Logs
ICON_POI_26 = 26, // Grey ?
ICON_POI_27 = 27, // Blue and White ?
ICON_POI_28 = 28, // Blue ?
ICON_POI_29 = 29, // Red and White ?
ICON_POI_30 = 30, // Red ?
ICON_POI_GREYHOUSE = 31, // Grey House
ICON_POI_BWHOUSE = 32, // Blue and White House
ICON_POI_BLUEHOUSE = 33, // Blue House
ICON_POI_RWHOUSE = 34, // Red and White House
ICON_POI_REDHOUSE = 35, // Red House
ICON_POI_GREYHORSE = 36, // Grey Horse
ICON_POI_BWHORSE = 37, // Blue and White Horse
ICON_POI_BLUEHORSE = 38, // Blue Horse
ICON_POI_RWHORSE = 39, // Red and White Horse
ICON_POI_REDHORSE = 40 // Red Horse
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment