private void virtualRegion_RegionEntered(int id, int x, int y, int key) { Image image = null; if (id == 1) { image = DrawTool.GetImageByString("", HSTypes.I2ConstellationTip(constellation), 150, Color.LimeGreen); } else if (id == 2) { image = DrawTool.GetImageByString("", HSTypes.I2InitialAttrTip(type), 140, Color.Gold); } else if (id == 3) { image = DrawTool.GetImageByString("", HSTypes.I2BloodTypeTip(bldType), 150, Color.LimeGreen); } if (image != null) { tooltip.Show(image, this, x + 2, y + 3); } }