01-31-2005, 09:26 PM
I see two weak places in the macro.
1.
,sel pixel(53 619) ;;Look at this location
,,case [0xFFBE00,0xAAFFFF,0x40FF40,0x40FFFF]
There is no code to execute when the color is one of these colors. Place the code either in the same line, or in the subsequent lines with the same number of commas as the case line.
2.
,key {petVattack}
{ and } are special symbols. Use [ and ] instead. Or enclose in quotes: key "pet attack"
1.
,sel pixel(53 619) ;;Look at this location
,,case [0xFFBE00,0xAAFFFF,0x40FF40,0x40FFFF]
There is no code to execute when the color is one of these colors. Place the code either in the same line, or in the subsequent lines with the same number of commas as the case line.
2.
,key {petVattack}
{ and } are special symbols. Use [ and ] instead. Or enclose in quotes: key "pet attack"
