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

How to run multiple loops at the same time?

Asked by 9 years ago
01for q=1,100 do
02wait()
03    print(q*2)
04end
05 
06for i=1,200 do
07wait()
08    if not i%2 == 0 then
09        print'not EVEN close' --I know, not very punny, oops, funny
10end
11end

What's going to happen is the first loop is going to run, and then once it's over, the next loop will run. The only way(in my mind) is to make a separate script for the second loop. But i need 6 loops to run at the same time, and I don't want 6 scripts appearing whenever the round restarts(i need 6 loops to run when the round restarts for various purposes). So how can i get 6 loops to run at the same time in the same script?

4 answers

Log in to vote
2
Answered by 9 years ago

I'd say you have to make it so something triggers them with a function, that's how I'd do it at least.

01--Example idea
02game.Workspace.ChildAdded:connect(function()
03for q=1,100 do
04wait()
05    print(q*2)
06end
07end)
08game.Workspace.ChildAdded:connect(function()
09for i=1,200 do
10wait()
11    if not i%2 == 0 then
12        print'not EVEN close' --I know, not very punny, oops, funny
13end
14end
15end)
0
umm. How does that work with 6 loops in a script? ScriptsAhoy 202 — 9y
0
You'd make it so, say when the round starts, you'd make a function based on triggering when that happens. If you don't understand how functions work: http://wiki.roblox.com/index.php?title=Function Vingam_Securis 213 — 9y
0
No, i mean how do i get 6 loops to run at the same times in a script. Because the script will finish one loop, then go onto the next, how do i get it to do all of them at the same time in one script ScriptsAhoy 202 — 9y
0
Functions, have each function trigger from the same time, thus they'll all run in sync. [At least, as close to sync as you want to make them.] Vingam_Securis 213 — 9y
View all comments (2 more)
0
Can you make a demonstration? ScriptsAhoy 202 — 9y
0
Editted the answer above. Vingam_Securis 213 — 9y
Ad
Log in to vote
1
Answered by
Perci1 4988 Trusted Moderation Voter Community Moderator
9 years ago

You can use spawn. This will cause the function you give it as an argument to run separate from the rest of the script (although it's actually much more complex than that, read the wiki about it if you want). This allows you to run two loops at the same time.

01function loop()
02    for i = 10,20 do
03        wait(1)
04        print(i)
05    end
06end
07spawn(loop)
08 
09for i = 1,10 do
10    wait(1)
11    print(i)
12end

You can also use coroutines to get a similar effect. The wiki has pretty much your exact example on it, so I won't bother writing one.

0
Thanks! ScriptsAhoy 202 — 9y
0
How do i use a function with parameters with this? like function add(n1,n2) return n1+n2 end spawn(add(1,2)) is what I'm guessing, will that work? ScriptsAhoy 202 — 9y
0
This is actually addressed on the wiki. You actually can't do that because spawn() takes a function as an argument. 'add()' is not a function, it's the result of the function 'add'. You could do spawn( function() add(1,2) end ) or you could just use corountines. Perci1 4988 — 9y
Log in to vote
1
Answered by
lucas4114 607 Moderation Voter
9 years ago

use coroutine, it lets you run more than 1 things on a script: http://wiki.roblox.com/index.php?title=Function_dump/Coroutine_manipulation

01coroutine.resume(coroutine.create(function() --the script will be running both this and the other loop at the same time
02    for q=1,100 do
03        wait()
04        print(q*2)
05    end
06end))
07 
08for i=1,200 do
09    wait()
10    if not i%2 == 0 then
11        print'not EVEN close' --I know, not very punny, oops, funny
12    end
13end

and you could do:

01coroutine.resume(coroutine.create(function()
02    for q=1,100 do
03        wait()
04        print(q*2)
05    end
06end))
07 
08coroutine.resume(coroutine.create(function() --now both loops are in a coroutine, so if you added anything else it would run both loops and whatever other code you put
09    for i=1,200 do
10        wait()
11        if not i%2 == 0 then
12            print'not EVEN close' --I know, not very punny, oops, funny
13        end
14    end
15end))

And if you need to script to run more than 3 things at once you can just add more coroutines!

Log in to vote
1
Answered by 9 years ago

Recursive solution to making a loop and printing it 100 times

01function PrintvalTimes(value)
02if(value == 0) then --base case
03print(value);
04else
05    PrintvalTimes(value-1)
06end
07 
08 
09end
10PrintvalTimes(100)

then if you wanted another loop, just use this function as a model

0
Thank you, but there were already 3 different answers. ScriptsAhoy 202 — 9y
0
Yes, I know, I was just trying to show ya how recursion works, because I have an exam for recursion tommarow... Also, its very handy to use recursion. scottmike0 40 — 9y
0
o-o-oh, thank you ScriptsAhoy 202 — 9y

Answer this question