A awhwhadafuh New Member Joined Oct 6, 2014 Messages 3 Reaction score 0 Oct 6, 2014 #1 Is there a way for me to get the X Y Cordinates of something im targeting such as a cottage or npc
A awhwhadafuh New Member Joined Oct 6, 2014 Messages 3 Reaction score 0 Oct 6, 2014 #3 Sidalol said: me.target.x Click to expand... how would i use that to display the x y cordinates of my target into the archebuddy console im new to this and i dont know what im doing
Sidalol said: me.target.x Click to expand... how would i use that to display the x y cordinates of my target into the archebuddy console im new to this and i dont know what im doing
Sidalol Member Joined Jul 1, 2010 Messages 987 Reaction score 15 Oct 6, 2014 #4 Code: if (me.target != null) Log("Target: " + me.target.name + " x: " + me.target.x + " y: " + me.target.y);
Code: if (me.target != null) Log("Target: " + me.target.name + " x: " + me.target.x + " y: " + me.target.y);
A awhwhadafuh New Member Joined Oct 6, 2014 Messages 3 Reaction score 0 Oct 6, 2014 #5 Sidalol said: Code: if (me.target != null) Log("Target: " + me.target.name + " x: " + me.target.x + " y: " + me.target.y); Click to expand... worked perfectly thank you
Sidalol said: Code: if (me.target != null) Log("Target: " + me.target.name + " x: " + me.target.x + " y: " + me.target.y); Click to expand... worked perfectly thank you