07-19-2009, 12:03 AM
You can change the RGBA colors of the dots where noted:
PLAYER_COLOR = Color.new(255, 0, 0, 192) # Player color
OBJECT_COLOR['npc'] = Color.new(30,144,255,160)
OBJECT_COLOR['treasure'] = Color.new(0,255,255,160)
OBJECT_COLOR['enemy'] = Color.new(139,35,35,160)
OBJECT_COLOR['merchant'] = Color.new(255,255,0,160)
I can see the player is RED with some transparency, the NPCs are more greenish blue, Merchants are yellow... etc.
PLAYER_COLOR = Color.new(255, 0, 0, 192) # Player color
OBJECT_COLOR['npc'] = Color.new(30,144,255,160)
OBJECT_COLOR['treasure'] = Color.new(0,255,255,160)
OBJECT_COLOR['enemy'] = Color.new(139,35,35,160)
OBJECT_COLOR['merchant'] = Color.new(255,255,0,160)
I can see the player is RED with some transparency, the NPCs are more greenish blue, Merchants are yellow... etc.