12.05.2012, 06:55
hello, i'm new in mysql so i dont know how to load player position, saving is good but loading is bad, it loads player in too vilages (0 cordinates) if someone can help me it woud be nice
this is my saving:
and this is loading:
loading isint working
saving is good the cordinates is saved.
P.S. sorry for my bad english
this is my saving:
Код:
GetPlayerPos(playerid,pPos[0],pPos[1],pPos[2]); format(query, sizeof(query), "UPDATE `Vartotojai` SET `X` = '%f', `Y` = '%f', `Z` = '%f' WHERE (`Vardas` = '%s')",pPos[0], pPos[1], pPos[2],pName); mysql_query(query);
Код:
new Float:pos[3]; mysql_fetch_field_row(Query,"X"); pos[0] = floatstr(Query); mysql_fetch_field_row(Query,"Y"); pos[1] = floatstr(Query); mysql_fetch_field_row(Query,"Z"); pos[2] = floatstr(Query); SetPlayerPos(playerid,pos[0],pos[1],pos[2]);

P.S. sorry for my bad english