mob/proc/ShowMap()
var/tmp/buf = ""
for(var/xx = x-client.view, xx < x+client.view+1, xx++)
for(var/yy = y-client.view, yy < y+client.view+16, yy++)
var/turf/T = locate(xx,yy,z)
var/mob/M = locate() in T
if(M)
buf += M.text
else
buf += T.text
buf += "\n"
src << buf
Problem description:
North is to the right south is to the left. when moving how to fix it?
same with east and west... west is up and east is down lol wtf T.T