/**************************************************************************** * KCar.SNL * AI LOGIC FOR THE Kewlett Car * DAVIDE February 17, 2003 ****************************************************************************/ #inherit "Vehicle.SNL" /**************************************************************************** * SNL GLOBAL VARIABLES ****************************************************************************/ /**************************************************************************** * Called when the object is first created * TimS March 3 2002 ****************************************************************************/ OnCreate() { // Call the base class ::OnCreate(); //SetProperty1(THIS, "MaxIdleAccel", 0.4 ); //SetProperty1(THIS, "MaxAlertAccel", 0.4 ); //SetProperty1(THIS, "TiltSensitivity", 40 ); //SetProperty1(THIS, "TiltDampening", 5 ); //SetProperty1(THIS, "TiltSuppression", 2 ); } /***************************************************************************/ /**************************************************************************** * Called when the object is first turned on * TimS March 3 2002 ****************************************************************************/ OnBeginScript() { ::OnBeginScript(); } /***************************************************************************/