• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

bit.band doesnt work as expected

Capaverde

New Member
Joined
Sep 30, 2007
Messages
107
Reaction score
4
local n = 509
n = bit.bxor(n*(2^13), n)
return ( 1.0 - bit.band((n * (n * n * 15731 + 789221) + 1376312589), 0x7fffffff) / (2*1073741824.0))



bit.band should give 1463304111 (it's what it gives in lua5.2 standalone with the bit32 module) but it's giving 0 instead
so the function is giving 1 instead of 0.3185...
 
Back
Top