Warning 208 Ayuda
#3

no debe ser flotante ya que playerid es un tipo int (ENTERO) no flotante, al principio le pasan el parametro de la id del jugador la cual debe ser entero.

stock Float:Player_get_speed(playerid) X playerid es tipo int

stock GetPlayerSpeed(playerid) >>

Prueba asi
pawn Код:
stock GetPlayerSpeed(playerid)
{
new
Float: Floats[3];

GetVehicleVelocity(GetPlayerVehicleID(playerid), Floats[0], Floats[1], Floats[2]);
return floatsqroot(Floats[0] * Floats[0] + Floats[1] * Floats[1] + Floats[2] * Floats[2]) * 150;
}
el resultado final sera un tipo float, cuando llames GetPlayerSpeed(playerid); procura declarar una variable flotante para almacenar el valor.

new Float: Velocidad = GetPlayerSpeed(playerid);
Reply


Messages In This Thread
Warning 208 Ayuda - by Skrixel - 08.04.2016, 01:33
Re: Warning 208 Ayuda - by FelipeBlanco - 08.04.2016, 03:02
Re: Warning 208 Ayuda - by NullBot - 08.04.2016, 12:03
Re: Warning 208 Ayuda - by Daniel-92 - 08.04.2016, 22:55

Forum Jump:


Users browsing this thread: 1 Guest(s)