﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
2183	bitand not 64-bit,or 64-bit version not offered, srandom not 64-bit	jmichae3@…		"SRandom is not 64-bit.
bitand and similar functions are not 64-bit. consequently, when I try to create an integer timestamp to use as a seed, it always comes out as the same number. 

OR bitand and their associated functions and srandom are just broken.

    local $y=(@YEAR     * 1000 * 60 * 60 * 24 * 31 * 12)
    local $mo=((@MON-1) * 1000 * 60 * 60 * 24 * 31)
    local $d=((@MDAY-1) * 1000 * 60 * 60 * 24)
    local $h=(@HOUR     * 1000 * 60 * 60)
    local $mi=(@MIN     * 1000 * 60)
    local $s=(@SEC      * 1000)
    local $ms=@MSEC
    local $timestamp=$y+$mo+$d+$h+$mi+$s+$ms
    $timestamp=BitAND($timestamp, 2147483647)
    msgbox(0,""timestamp"",$timestamp)
    SRandom($timestamp)
    msgbox(0,""SRandom'd Random"",Random(1,200,1))

please fix. thanks."	Bug	closed		AutoIt	3.3.6.1	None	No Bug		
