Dakar4x4, on Jul 23 2009, 08:17 AM, said:
Hmm... Looks ok, and you have the Final icon in c:\gsak\userimages... can we see a copy of your icons.txt file from your macros directory? I do know the first release was setup wrongly with "Final Location" rather than just "Final" in the description field. The only other thing I can think of is when you run the macro, do you have the finals not 'flagged' and have the box ticked to only export 'flagged' icons?
Cheers,
Jon
Flagging not used at all. The quote below is the icons.txt file
Quote
# See also memory.txt for what to set $_Symbol to
# This is your cacherid, used for matching your caches to you.
$ownerid = "340827"
### No more options, edit if you're interested though..
# Default to blank white, if we can't match anything.
$cacheType = "Default"
$pre = ""
# Waypoint type lookups
#
# For geocaches, we look it up, and then lookup in the 'array'
# Key Cache Type
# ==== ============
# "B" LetterBox
# "C" CITO
# "E" Event
# "G" Benchmark
# "L" Locationless
# "M" Multi
# "O" Other
# "R" Earth
# "T" Traditional
# "U" Unknown
# "V" Virtual
# "W" Webcam
# The top set of letters (cache types in GSAK) relate to the bottom set (of Memory-Map custom icons),
# we use this as base, and add on statuses.
$cacheTypeKeys = "BCEGLMORTUVW"
$cacheTypeDesc = "Letterbox;Event;Event;Virtual;Default;Multi;Default;Earthcache;Traditional;Mystery;Virtual;Webcam;"
# It's a cache, use the above
If Left($d_Code, 2) = "GC"
$index = at($d_cacheType,$cacheTypeKeys)
$cacheType = Extract($cacheTypeDesc, ";", $index)
EndIf
# Use a special icon for micros
If $d_Container = "Micro" AND $cacheType = "Traditional"
$cacheType = "Micro"
EndIf
# And another for Motorway Mayhem caches
If not(at("MOTORWAY MAYHEM", upper($d_Name)) = 0)
if not($cacheType = "Mystery")
$cacheType = "MM"
EndIf
EndIf
# It's some non-geocaching.com thing, customise as you wish.
If Left($d_Code, 2) = "TP"
$cacheType = "Trigpoint"
EndIf
# It's some non-geocaching.com thing, customise as you wish.
If Left($d_Code, 1) = "D"
$cacheType = "Reference"
EndIf
# Now, have we found it, is it unavailable?
if $d_Found
$pre = "Found "
EndIf
If $d_Archived OR $d_TempDisabled
$pre = "Unavailable "
EndIf
if $d_OwnerId = $ownerid
$pre = "Owned "
EndIf
if $d_HasTravelBug
$pre = "Bug " + $pre
EndIf
$_Symbol = $pre + $cacheType
#children
# set default for children
$_Symbol = "Dot"
if $d_cType = "Parking Area"
$_Symbol = "Parking"
endif
if $d_cType = "Stages of a Multicache"
$_Symbol = "Stages"
endif
if $d_cType = "Question to Answer"
$_Symbol = "Question"
endif
if $d_cType = "Trailhead"
$_Symbol = "Trailhead"
endif
if $d_cType = "Final location"
$_Symbol = "Final"
endif
if $d_cType = "Reference Point"
$_Symbol = "Reference"
endif

Help








