07.09.2014, 09:57
MySQL stores floating point values with a high precision by default (up to 12 decimal places, I think), far more than what is used by the game (usually no more than 4). The results in phpMyAdmin are usually truncated to 6 characters for readability, but if you run a query like
then the entire number will be displayed.
PHP код:
SELECT posx+0, posy+0, posz+0 ...

