Skip to content
This repository was archived by the owner on Feb 19, 2020. It is now read-only.

GetPlayerAircraftHeight

GtakillerIV edited this page Nov 13, 2014 · 3 revisions

GetPlayerAircraftHeight

Returns the max achievable height gain able with an aircraft.


Parameters

playerid

The player's id.

Returns

    float:height

Usage

CMD:getmaxheight(playerid, params[])
{
	new string[128];

	format(string, sizeof(string), "The max gain able height with an aircraft is: %f", GetPlayerAircraftHeight(playerid));

	SendClientMessage(playerid, -1, string);

	return 1;
}

See also

SetPlayerAircraftHeight

GetPlayerJetpackHeight

SetPlayerJetpackHeight

Clone this wiki locally