BitOr

From Multi Theft Auto: Wiki
Revision as of 01:26, 13 September 2015 by Qaisjp (talk | contribs) (change example)
Jump to navigation Jump to search

This function performs a bitwise OR-conjunction on two or more (unsigned) 32-bit integers. See Bitwise operation for more details.

Syntax

uint bitOr ( uint var1, uint var2, ... )

Required arguments

  • varN: The value you want to perform an OR-conjunction on

Returns

Returns the conjuncted value.

Example

Accessories-text-editor.png Script Example Missing Function BitOr needs a script example, help out by writing one.

Before submitting check out Editing Guidelines Script Examples.
-- TODO


See Also