Code:
/*
Simple script to control the lights of one or more
runways, it will handle the color and blink offset of the lights
version 0.1
*/
string SearchSTR = "RW";
int NumOfRunways = 3;
//which color the lights will be on takeoff mode (example 0,0,255 means blue)
short TakeOffColorRedVal = 0;
short TakeOffColorGreenVal = 0;
short TakeOffColorBlueVal = 255;
//which color lights will be on landing mode (example 255,0,0 means red)
short LandingColorRedVal = 255;
short...