-- -- Autor: BenjamÌn de la Fuente Ranea -- Fecha: 28-11-2008 -- -- Script de carga inicial -- settings = { showConfigDialog = true, ----------------------------------- -- 1. SHOOTING -- ----------------------------------- -- 1.1. Height indicator -- heightIndicatorBaseSpeed = 2.0, heightIndicatorSpeedFactor = 1.0, heightIndicatorAPoint = 0.8, -- of the total height heightIndicatorBPoint = 0.2, -- of the total height heightIndicatorBSpeedReduction = 0.5, -- 1.2. Swipe gesture -- shootGestureAngleFactor = 3.5, shootGestureEffectFactor = 1.0, shootGestureSpeedFactor = 1.0, shootGestureMinSpeed = 650, shootGestureMaxSpeed = 1500, -- if it's 1.0f then it will result in a shoot power corresponding directly to the velocity of the swipe. Values above 1.0f will boost the velocity of the swipe, -- allowing for a higher shoot power with a slower swipe gesture than normal. Vice-versa for values below 1.0f => it will require a faster swipe to reach a powerfull kick shootSwipeFactor = 1.0, -- 1.3. Influence area -- influenceAreaCrossbarFactor = 1.0, influenceAreaPostsFactor = 1.0, ----------------------------------- -- 2. DEFENDING -- ----------------------------------- -- 2.1. Standard staging area -- stagingAreaBaseWidth = 140.0, stagingAreaBaseHeight = 100.0, stagingAreaZeroDiveChance = 0.5, -- 2.2. Second staging area -- secondStagingAreaGrowthFactor = 1.0, secondStagingAreaDiveChance = 0.8, -- 2.3. Resolving the shot -- goalkeeperBaseChance = 0.8, -- the shooter's chance is (1.0 - goalkeeperBaseChance) ----------------------------------- -- 3. MISC -- ----------------------------------- goalGateLineCoordZ = 4530.056, --4534.134, aiMaxShooterWaitTime = 3, -- int value aiMinShooterWaitTime = 1, -- int value ----------------------------------- -- 3. DEBUGING -- ----------------------------------- showBallPath = false, }