Xpect92 22 Posted November 22, 2016 Is this intended? I'm really bad at math but should it not return a positive remainder? Or are their different mod operators? Cheers Edit: Never Mind, found my answer in the wiki after all: Be careful when dealing with negative numbers. The way a modulo operation treats negatives differs between languages. In SQF truncated division is used, hence: -12 % -10 = -2 -12 % 10 = -2 12 % -10 = 2 12 % 10 = 2 Sorry Share this post Link to post Share on other sites