Tables aren't working properly

I realized my mistake. Gimme a second to make sure.

Try i % 10

1 Like

What I did was the length % i which means they have to be equal. Doing i % 10 means every 10 seconds.

Edit: so every time i is a multiple of 10 then it == 0 which would kill someone.

1 Like

So i do something like this?

if i % length == 10 and firstSecond == true then

No
if i % 10 == 0 and firstSecond == true then

The explanation is 2 posts up in the edit.

1 Like

Okay thanks for the fast answer :smiley:
(30 characters)

I happened to just get on the forums so you got in luck lol.

1 Like