[Release] RCM[Rappelz Map Coordinates] Project

12/30/2014 22:20 marekrndr#16
Quote:
Originally Posted by Dev.IceSword View Post
I know that , ThereFor I Shared This One as an Open-Source Project :D
How accurate are the coordinates? This is what I use on a 566x646 map, I added it to MouseMove event on the form:
Quote:
Dim warpMap_X As String = (e.X * 185) + 80400
Dim warpMap_Y As String = 165000 - (e.Y * 200)
12/30/2014 23:26 Dev.IceSword#17
Well , They are in the RappelzMap Library...
Quote:
public void GetX()
{
dx = 202 - sx;
xtxt = 114800 - dx * 200;
}
public void GetY()
{
dy = 388 - sy;
ytxt = 86400 - dy * 200;
}
private void Moving(object sender, MouseEventArgs e)
{
//GetX
RappelzCoordinates.sx = e.Location.X;
RappelzCoordinates.GetX();
//GetY
RappelzCoordinates.sy = e.Location.Y;
RappelzCoordinates.GetY();
}
:p Maybe it can help you :p
12/31/2014 00:45 marekrndr#18
I'm just curious about methods everyone else uses.
12/31/2014 01:16 Dev.IceSword#19
hahaha okay