25.07.2018, 13:43
Hi.
I've ran into a problem where my player position script only saves 4 numbers and no decimal points. I'm using mysql here is my script for saving positions:
Please help
I've ran into a problem where my player position script only saves 4 numbers and no decimal points. I'm using mysql here is my script for saving positions:
PHP код:
stock SavePlayerPos(playerid)
{
new query[500], Float:posX, Float:posY, Float:posZ;
GetPlayerPos(playerid, posX, posY, posZ);
format(query, sizeof(query), "UPDATE `accounts` SET `playerX` = '%f', `playerY` = '%f', `playerZ` = '%f' WHERE `playerName` = '%s'", posX, posY, posZ, playerInfo[playerid][playerName]);
mysql_tquery(Database, query);
}