GSC POSITION / COORDS
MW3 Modding Support & Discussion
4
Posts
3
Posters
172
Views
1
Watching
-
Hey does some one have a gsc script to give out the current coords / position x y z in the console?
-
Hey does some one have a gsc script to give out the current coords / position x y z in the console?
dxxniel You can get the origin of a player by doing
print( player.origin );
If you want to get angles you can do
print( player.angles );
-
Hey does some one have a gsc script to give out the current coords / position x y z in the console?
dxxniel if your goal is to debug your position then
cg_drawFps 4
in the console works great -
dxxniel You can get the origin of a player by doing
print( player.origin );
If you want to get angles you can do
print( player.angles );
JezuzLizard thank you for the fast reply will try it.