Page 1 of 1

Getting player's X Y or Z coordinate Only!

Posted: May 15th, 2011, 5:52 pm
by Creep
Hello!
I just want to get: self.origin.x coordinate only for example.
Not an ( x , y , z ) format, only one of the three numbers :) Is this possible?
Thanks, Creep! :)

Re: Getting player's X Y or Z coordinate Only!

Posted: May 15th, 2011, 6:28 pm
by MasterThomy
x: self.origin[0]
y: self.origin[1]
z: self.origin[2]

Re: Getting player's X Y or Z coordinate Only!

Posted: May 15th, 2011, 7:17 pm
by Creep
thanks :))