limitSpeed: Difference between revisions
Jump to navigation
Jump to search
m (undo revision 82381 by Will, proved that should be a feature rather than bug.) |
m (template:command argument fix) |
||
Line 7: | Line 7: | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| Limit speed of given vehicle or person to given value (in km/h). |= | | Limit speed of given vehicle or person to given value (in km/h). |DESCRIPTION= | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| objectName '''limitSpeed''' speed |= | | objectName '''limitSpeed''' speed |SYNTAX= | ||
|p1= objectName: [[Object]] |= | |p1= objectName: [[Object]] |PARAMETER1= | ||
|p2= speed: [[Number]] |= | |p2= speed: [[Number]] |PARAMETER2= | ||
| [[Nothing]] |= | | [[Nothing]] |RETURNVALUE= | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
Line 26: | Line 26: | ||
[[sleep]] 0.1; | [[sleep]] 0.1; | ||
}; | }; | ||
};</code> |= | };</code> |EXAMPLE1= | ||
|x2 = <code>["SpeedObserver","onEachFrame",{[[hintSilent]] [[format]] ["%1",[[speed]] [[vehicle]] MyVehicle]},[]] [[call]] [[BIS_fnc_addStackedEventHandler]]; | |x2 = <code>["SpeedObserver","onEachFrame",{[[hintSilent]] [[format]] ["%1",[[speed]] [[vehicle]] MyVehicle]},[]] [[call]] [[BIS_fnc_addStackedEventHandler]]; | ||
Line 34: | Line 34: | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| [[speed]] |= | | [[speed]] |SEEALSO= | ||
}} | }} |
Revision as of 14:42, 7 April 2019
Description
- Description:
- Limit speed of given vehicle or person to given value (in km/h).
- Groups:
- Uncategorised
Syntax
- Syntax:
- objectName limitSpeed speed
- Parameters:
- objectName: Object
- speed: Number
- Return Value:
- Nothing
Examples
- Example 1:
// Adjust "speedLimit" variable to change limited speed. (A3 1.24 we don't need loop for a continus effect, limitSpeed alone is enough.) _this setVariable ["speedLimit", 200]; _nul = _this spawn { while {canMove _this} do { _this limitSpeed (_this getVariable "speedLimit"); sleep 0.1; }; };
- Example 2:
["SpeedObserver","onEachFrame",{hintSilent format ["%1",speed vehicle MyVehicle]},[]] call BIS_fnc_addStackedEventHandler; sleep 10; MyVehicle limitSpeed 5; //Watch the effect of this command.
Additional Information
- See also:
- speed
Notes
-
Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note
Notes
- Posted on 9 February 2008
- Kronzky
- (A1 1.08.5163)Has only an temporary effect on the vehicle specified (i.e. vehicle goes back to its previous speed right away). So, in order for this command to have a real, noticeable effect, it would have to be issued continuously (e.g. via a script loop, but in A3 1.24 it's unnecessary).
- Posted on 29 July 2014
- ffur2007slx2_5
- (A3 1.24)To clarify, limitSpeed only do effect on non-player controlled AI units, it has continuous effect and AI won’t break through the speed limitation until one is contacted, engaged or regrouped.