Happy new year, to everyone who has been on this forum.
lol i m working on different idea but same goal.. i grap map from dll inside co folder and insert in picturebox; now i m try to convert conquer coordinate in cartesian coordinate to locate my charQuote:
from the netherlands here lol
<Edit>
im currently working on GUI, and i've been wondering how i can make a Dmap picture load into my form. Has this todo with a picturebox and Dmaphandler? Because if so, ill check it out. But i could search for a while, when it's not done that way.
Thank you for sharing this, ill look into it how i do those coordinates, but ill help you if i got it done.Quote:
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 :(