01.05.2014, 20:45
- The tag is "Float:" not "float" - that would give warning about tag mismatch.
- The max length for a client message is 144 so using 256 goes waste.
- Coordinates are floating point numbers, so use the placeholder "%f" instead of "%d" which is for integers. If you don't want to display the demical places, then use "%.0f" instead.
- The max length for a client message is 144 so using 256 goes waste.
- Coordinates are floating point numbers, so use the placeholder "%f" instead of "%d" which is for integers. If you don't want to display the demical places, then use "%.0f" instead.