mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
34 lines
564 B
Plaintext
34 lines
564 B
Plaintext
/*
|
|
* Author: commy2
|
|
* Get the compass direction the wind is blowing from.
|
|
*
|
|
* Arguments:
|
|
* None
|
|
*
|
|
* Return Value:
|
|
* Wind cardinal direction <STRING>
|
|
*
|
|
* Public: Yes
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
localize ([
|
|
LSTRING(S),
|
|
LSTRING(SSW),
|
|
LSTRING(SW),
|
|
LSTRING(WSW),
|
|
LSTRING(W),
|
|
LSTRING(WNW),
|
|
LSTRING(NW),
|
|
LSTRING(NNW),
|
|
LSTRING(N),
|
|
LSTRING(NNE),
|
|
LSTRING(NE),
|
|
LSTRING(ENE),
|
|
LSTRING(E),
|
|
LSTRING(ESE),
|
|
LSTRING(SE),
|
|
LSTRING(SSE),
|
|
LSTRING(S)
|
|
] select (round (windDir / 360 * 16))) // return
|