1234567891011121314 |
- class ActionEatCereal: ActionEat
- {
-
- override void OnFinishProgressServer( ActionData action_data )
- {
- super.OnFinishProgressServer(action_data);
-
- float compassChance = 0.1;
- if (Math.RandomFloatInclusive(0.0, 1.0) < compassChance)
- {
- Object compass = GetGame().CreateObjectEx("OrienteeringCompass",action_data.m_Player.GetPosition(),ECE_PLACE_ON_SURFACE,RF_DEFAULT);
- }
- }
- };
|