Position X and Y.Gorillaz BR User Offline 23.02.11 12:59:21 am hi, this is my first post here, sorry for my English, I'm Brazilian. I was wondering how do I know my location and X Y. Like this photo: http://www.unrealsoftware.de/u_scr/u80dc_4d5e4e0es1.jpg
Re: Position X and Y.J4x User Offline 23.02.11 01:02:34 am You have to use a script.. Sarch in file archive position script.
Re: Position X and Y.KaBooMa User Offline 23.02.11 01:09:45 am to check the players x and y you do: player(id,"tilex") player(id,"tiley") use hudtxt to show it here is a good example Spoiler addhook("movetile","WhenPlayerMove") function WhenPlayerMove(id,x,y) parse('hudtxt2 '..id..' 1 "X:'..player(id,'tilex')..' Y:'..player(id,'tiley')..'" 0 100') end when you move it will show you your x and y under the radar.
Re: Position X and Y.DsTyLe User Offline 23.02.11 01:50:17 am and you can use too: player(id,"x") player(id,"y") to find your position in pixels.