Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
2

[Solved] i % 1 does not give 0 in script, but manually in command line it does?

Asked by
rabbi99 714 Moderation Voter
4 years ago
Edited 4 years ago

I have a piece of code that counts in a for loop but while counting I want it so whenever it is divisible by 1 to run a function. However, it keeps failing the 'checking if divisible by 1' part (it gives a different number). I just can't figure it out, unless it's some bug.

Here's a slightly edited copy of my script:

01for i = 0,Time, 0.1 do
02    Charge = i / Time
03    if i % 1 == 0 then
04        print(i, true,  i % 1)
05        Function()
06    else
07        print(i, false, i % 1)
08    end
09    if HoldingZ == false then
10        break
11    end
12    wait(.1)
13end

And here's the output:

01>   0 true 0
02>   0.1 false 0.1
03>   0.2 false 0.2
04>   0.3 false 0.3
05>   0.4 false 0.4
06>   0.5 false 0.5
07>   0.6 false 0.6
08>   0.7 false 0.7
09>   0.8 false 0.8
10>   0.9 false 0.9
11>   1 false 1 -- Why does it not output 0?
12>   1.1 false 0.1
13>   1.2 false 0.2
14>   1.3 false 0.3
15>   1.4 false 0.4
View all 51 lines...

Now here's what happens if I do this in the command line at the bottom of Roblox Studio:

1print(5%1) -- Output: 0

What am I doing wrong? I am absolutely confused!

Thanks for helping!

Solution on DevForum: https://devforum.roblox.com/t/modulus-not-working-properly-in-loops/874087/2

1
Glad to hear that this was solved! :D Nckripted 580 — 4y
1
Glad to hear that this was solved! :D Nckripted 580 — 4y

2 answers

Log in to vote
1
Answered by
Nckripted 580 Moderation Voter
4 years ago
Edited 4 years ago

I have no idea what this is happening. Fortunately, I was browsing around, and I found a replacement for the modulus (you aren't the only one having an issue with this operator):

1a % b = a - math.floor(a / b) * b

It's not ideal, but hey! At least it returns the remainder. So, you could make a variable with this and write your code something like this:

1local remainder = i - math.floor(i / 1) * 1

Hope this helped!

0
Tell me if I made a mistake with formula. I am currently using a device where most Roblox resources are restricted, and I can later look into the workings of this operator. Nckripted 580 — 4y
0
change b to 1 by the way OhManXDXD 445 — 4y
0
I did that already. The change might not have updated, but I did notice that mistake. Thanks for pointing it out though! Nckripted 580 — 4y
0
Unfortunately, this brings out the same error. I figured this only happens with for loops. I don't understand why... rabbi99 714 — 4y
View all comments (3 more)
0
What the heck? I will investigate the issue more once I can utilize a different device. Nckripted 580 — 4y
0
Hey, I asked on the DevForum. I'll provide a link soon. They had a pretty crazy answer. rabbi99 714 — 4y
0
But I really appreciate your help and effort. I really do! rabbi99 714 — 4y
Ad
Log in to vote
1
Answered by
OhManXDXD 445 Moderation Voter
4 years ago

Use math.fmod, it does exactly what you want.

01for i = 0,Time, 0.1 do
02    Charge = i / Time
03    if math.fmod(i,1) == 0 then
04        print(i, true,  math.fmod(i, 1))
05        Function()
06    else
07        print(i, false, math.fmod(i, 1))
08    end
09    if HoldingZ == false then
10        break
11    end
12    wait(.1)
13end
0
You one hundred percent certain Luau supports math.fmod? Nckripted 580 — 4y
0
Unfortunately, this brings out the same error. I figured this only happens with for loops. I don't understand why... rabbi99 714 — 4y

Answer this question