LogicalAnd - Math
Revision as of 05:14, 30 May 2013 by imported>Bot Owned (Created page with "Category:Scripting Category:Papyrus Category:SKSE '''SKSE Member of:''' Math Script ANDs arg1 and arg2. == Syntax == <source lang="papyrus"> int Function Log...")
SKSE Member of: Math Script
ANDs arg1 and arg2.
Syntax
int Function LogicalAnd(int arg1, int arg2) global native
Parameters
- arg1: The first value to AND.
- arg2: The second value to AND.
Return Value
The decimal result of the AND.
Examples
int iA = Math.LogicalAnd(0x00205D96, 0x0059E50C) ;iA == 4504
int iC = Math.LogicalAnd(6582, 9258) ;iC == 34