
04-06-2003, 03:32 PM
I needed this as well, so i put a looping thread into the map scripts to print the location and angles to the console every 5 seconds.
add this into your map script after the spawn...
thread location
then add this thread at the bottom...
location:
println ("location is " + player[1].origin)
println ("angles are " + player[1].angles)
wait 5
goto location
end
|