Silkroad Character Location

11/12/2017 13:48 ahmed4ever2u#1
i want to calculate character location using the respond from /finduser command like this image
[Only registered and activated users can see links. Click Here To Register...]

does any one knows how?
11/12/2017 13:54 florian0#2
You cant. You need the RegionX/Y component to calculate the clients X/Y coordinates. /frame command will tell you these.

Equation for Client to Actual Coordinates. You can rearrange it for Actual to Client
Code:
xpos = (client_x % 192) * 10
ypos = (client_y % 192) * 10
region_x = (client_x - xpos / 10) / 192 + 135
region_y = (client_y - ypos / 10) / 192 + 92