You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 19, 2020. It is now read-only.
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);
return1;
}