mod: Difference between revisions
| mNo edit summary | m (ArmA use) | ||
| Line 1: | Line 1: | ||
| {{Command|= Comments | {{Command|= Comments | ||
| ____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| Line 42: | Line 38: | ||
|   _rand = [[random]] 6   |   _rand = [[random]] 6   | ||
|   _num <nowiki>=</nowiki> _rand - (_rand [[mod]] 1) |   _num <nowiki>=</nowiki> _rand - (_rand [[mod]] 1) | ||
| In ArmA though, [[round]] or [[floor]] would be the easier way to round. | |||
| <!-- Note Section END --> | <!-- Note Section END --> | ||
| </dl> | </dl> | ||
| <h3 style="display:none">Bottom Section</h3> | <h3 style="display:none">Bottom Section</h3> | ||
| [[Category:Scripting Commands|MOD]] | |||
| [[Category:Scripting Commands OFP 1.96|MOD]] | |||
| [[Category:Scripting Commands OFP 1.46|MOD]] | |||
| [[Category:Scripting Commands ArmA|MOD]] | |||
| [[Category:Command_Group:_Math|{{uc:{{PAGENAME}}}}]] | |||
Revision as of 19:52, 15 January 2007
Description
- Description:
- Remainder of a divided by b.
- Groups:
- Uncategorised
Syntax
Examples
- Example 1:
- _rem = 3 mod 2Result is 1
Additional Information
- See also:
- Operators
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
- Remainder is calculated in real domain.
- mod is identical to a % b
 
	