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

I want my function to restart instead of resuming using coroutine.resume(StartGame)?

Asked by
Vain_p 78
6 years ago
Edited 6 years ago

code:

001local StartGame = coroutine.wrap(function()
002    ChooseGame()
003    print(rm)
004    game.ReplicatedStorage.PlayersAlive.Value = game.ReplicatedStorage.NumPlayers.Value
005    for i,v in pairs(game.Players:GetChildren()) do
006        v.Backpack.inGame.Value = "Game"
007    end
008    game.ReplicatedStorage.GameStatus.Value = "Game"
009    if rm == 1 then
010        game.ReplicatedStorage.GameStatus.Value = "Game"
011        local WaterRunMap = game.ServerStorage.WaterRun:Clone()
012        WaterRunMap.Parent = game.Workspace
013        game:GetService("ReplicatedStorage").GameTime60:Fire()
014        game:GetService("ReplicatedStorage").WaterRun:FireAllClients()
015        wait(2.5)
View all 121 lines...
0
show StartGame function Gey4Jesus69 2705 — 6y
0
So instead of coroutine.resume() starting the code from where it left off is their a function like coroutine.restart()? Vain_p 78 — 6y
0
I have read that their is no restart funcrion how can I work myself around this Vain_p 78 — 6y

2 answers

Log in to vote
1
Answered by
ozzyDrive 670 Moderation Voter
6 years ago

A dead coroutine is a dead coroutine, you cannot restart it. You could create a new coroutine or alternatively put the running coroutine into suspended state with the coroutine.yield function, then repeat the necessary code once it is resumed again.

01local c = coroutine.create(function(x)
02    local n = 0
03    while true do
04        n = n + x
05        print(n)
06        x = coroutine.yield()
07    end
08end)
09 
10coroutine.resume(c, 1)
11coroutine.resume(c, 2)
12coroutine.resume(c, 3)

Before using coroutines however, please consider if you even need them. Most of the time you want the main thread yield until the game loop finishes and rather perform other actions in separate threads if absolutely necessary.

Ad
Log in to vote
0
Answered by
Vain_p 78
6 years ago

I just used repeat until

Answer this question