17.08.2017, 02:49
Prueba asн
PHP Code:
stock GetObjectDistanceFromPlayer(playerid, objectid, color, mensaje[])
{
new Float:X, Float:Y, Float:Z;
GetObjectPos(objectid, X, Y, Z);
new Float:distancia = GetPlayerDistanceFromPoint(playerid, X, Y, Z);
new msjDistancia[8];
format(msjDistancia, sizeof(msjDistancia), "%0.2f", distancia);
new mensajefinal[124];
format(mensajefinal, sizeof(mensajefinal), "%s",str_replace("-distancia-", msjDistancia, mensaje);//Cambie de lugar las variables, segъn yo asн tienen que estar acomodadas y asн tendrнa s que almacenar el mensaje.
SendClientMessage(playerid, color, mensajefinal);//Enviamos el mensaje al jugador con todo y el formato.
return 1;
}