mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
19 lines
360 B
Plaintext
19 lines
360 B
Plaintext
/*
|
|
* Author: Ruthberg
|
|
* Calculates the temperature based on altitude and weather
|
|
*
|
|
* Arguments:
|
|
* height - meters <NUMBER>
|
|
*
|
|
* Return Value:
|
|
* temperature - degrees celsius <NUMBER>
|
|
*
|
|
* Example:
|
|
* 500 call ace_weather_fnc_calculateTemperatureAtHeight
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
(GVAR(currentTemperature) - 0.0065 * _this)
|