pawn Код:
CALLBACK: GuardarNegocio_(idx)
{
new sql[312], playerid;
//playerid = 0
//La consulta es de 145 caracteres MAS 24 caracteres por el propietario y 32 por el nombre MAS numeros flotantes y enteros * 8.
//Mas o menos un total de 312 caracteres.
format(sql, sizeof(sql), "UPDATE negocios SET nPosX=%f, nPosY=%f, nPosZ=%f, nIntX=%f, nIntY=%f, nIntZ=%f, nInterior=%d, nIntExt=%d, nVirtualWorld=%d, nEstado=%d WHERE nSQLID=%d", NegocioInfo[idx][nPosX], NegocioInfo[idx][nPosY], NegocioInfo[idx][nPosZ],
NegocioInfo[idx][nIntX], NegocioInfo[idx][nIntY], NegocioInfo[idx][nIntZ], NegocioInfo[idx][nInterior], NegocioInfo[idx][nIntExt], NegocioInfo[idx][nVirtualWorld], NegocioInfo[idx][nEstado], NegocioInfo[idx][nSQLID]);
mysql_function_query(TuberiaMYSQL, sql, false, "OnQueryFinish_", "ii", 0, playerid);
format(sql, sizeof(sql), "UPDATE negocios SET nPropietario='%s', nPrecio=%d, nPuerta=%d, nDinero=%d, nNombre='%s', nTipo=%d, nPrecioEntrada=%d, nCambios=%d WHERE nSQLID=%d", NegocioInfo[idx][nPropietario], NegocioInfo[idx][nPrecio], NegocioInfo[idx][nPuerta],
NegocioInfo[idx][nDinero], NegocioInfo[idx][nNombre], NegocioInfo[idx][nTipo], NegocioInfo[idx][nPrecioEntrada], NegocioInfo[idx][nCambios], NegocioInfo[idx][nSQLID]);
mysql_function_query(TuberiaMYSQL, sql, false, "OnQueryFinish_", "ii", 0, playerid);
return 1;
}
PS: yo los contй por tanteo.