in my mods proxy i create a console for each client that i have ( i just ad a gui in Client and use Owner to upload info)
when i update on console lvl hp mp and coordinate of my char, a internal method upload map from client.map 1002 is newPlan ..
switch ((int)Owner.Map)
{
case 1002:
label7.Text = "NewPlain";
pictureBox1.Image = new Bitmap(Application.StartupPath + @"\map\newplain.png");
break;
case 1011:
label7.Text = "Phoenix Castle";
pictureBox1.Image = new Bitmap(Application.StartupPath + @"\map\woods.png");
break;
case 1020:
label7.Text = "Ape Mountain";
pictureBox1.Image = new Bitmap(Application.StartupPath + @"\map\canyon.png");
break;
case 1000:
label7.Text = "Desert";
pictureBox1.Image = new Bitmap(Application.StartupPath + @"\map\desert.png");
break;
case 1015:
label7.Text = "BirdIsland";
pictureBox1.Image = new Bitmap(Application.StartupPath + @"\map\island.png");
break;
}
pictureBox1.SizeMode = PictureBoxSizeMode.StretchImage;
but problem are coordinates