private Coordinate GetRealPosition(int X, int Y) { double fCenterX = pictureBox1.Left + pictureBox1.Image.Width / 2.0f; double fCenterY = pictureBox1.Top + pictureBox1.Image.Height / 2.0f; Coordinate Coordinate = new Coordinate( (fCenterX - 18.0f + pictureBox1.Image.Width) * (X / 100.0f), (fCenterY - 18.0f + pictureBox1.Image.Height) * ((pictureBox1.Image.Height - Y) / 100.0f)); return Coordinate; } //Bu method mouse position parametrelerini alıyor x mouse x, y mouse y bu minimapte nokta koyulan gerçek kordinat alma resimde tıklanan yerin oyunda kordinatını veren formul //Benim bunu gerçekn kordinattan resimdeki posizyona dönüştürmem lazım kısacası yukarıdaki methodun tersi //beynim allak bullak oldu kafa karıştırdı :D