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

How should I go about making a round system?

Asked by 5 years ago
Edited 5 years ago

I've been trying to make some games that have a working round system in it. For the simple games that I tried to make, it worked perfectly. However, when I got into the more complex games with multiple different ways that the round could end, I didn't know what to use for a round system. When I say "what to use" I mean the use of while loops, for loops, changed events, etc. What I used for both of my games is a while wait() do loop (yes I know I shouldn't do that, its a habit that I'm trying to get rid of). The script looked something like this:

01local RoundInProgress = game.ServerStorage.RoundInProgress
02while wait() do
03    if #game.Players:GetPlayers() < 2 then
04        game.ReplicatedStorage.Status.Value = "Two or more players are required to start..."
05    elseif #game.Players:GetPlayers() >= 2 and RoundInProgress.Value == false then
06        RoundInProgress.Value = true
07        -- Choose roles
08        -- Choose map
09        -- Teleport players
10    else
11        wait(1) --[[ I added this because there seemed to be an alternative somehow that                
12                       caused the loop to stop running. I don't know how that could be the case but                             
13                   the addition of the else seemed to fix it.]]
14    end

This seemed like a really good way to do a round system to me, until I tried to end the game when too many players left. When I did that, the players would teleport back and the round would never start again even though I got no errors. What I tried to do instead of just changing the variables is a force reset. I set a bool value to true and the script that was connected to the changed event would delete all the scripts and paste it back in. The problem with this was that every time a round started the map would destroy and the intermission would start again.

I'm not sure if the backstory was needed, but what I'm asking is what you guys would use to make a round system for your games. Thanks in advance.

0
Did you make it so when a round ends it makes RoundInProgress.Value = false? mixgingengerina10 223 — 5y
1
I would use a corortine.wrap function. Code1ng 15 — 5y

1 answer

Log in to vote
1
Answered by
Mr_Unlucky 1085 Moderation Voter
5 years ago
Edited 5 years ago

Hi! As I'm currently making a round based game, I'll give you a brief rundown on my way of creating round-based games.

I create several functions, one for the intermission, one for choosing the round, and another for teleporting the players and such. However, for multiple gamemodes I usually use module scripts and require them and run a function within them.

1while true do
2    if #game:GetService("Players"):GetPlayers() < 10 then repeat wait(1) until #game:GetService("Players"):GetPlayers() >= 10 end
3 
4    --//We run some functions here and so on...
5end

For rounds and stuff, we do

1function roundStart()
2    for i = 300,0,-1 do
3        --Code here
4    end
5end

The code above is just a simple function, but what we'll do is insert a few conditionals so that every second we check the following:

  • If the timer is 0.
  • If the number of players is 1 or 0.
  • If some win condition is met
  • etc.

So we insert those, and we're done with the round start function!

01local AlivePlayers = {}
02local winCondition = false
03 
04function roundStart()
05    for i = 300,0,-1 do
06        if i == 0 then
07 
08        elseif #AlivePlayers == 1 then
09 
10        elseif #AlivePlayers == 0 then
11 
12        elseif winCondition == true then
13 
14        end
15    end
16end

And finally, for stuff like last man standings, we can create loop that gets every since alive player in the game and check if they're dead and stuff, and if that's the case we remove them from the table.

01for i,v in pairs(AlivePlayers) do
02    if v then
03        local Character = v.Character
04        if Character and Character.Humanoid.Health > 0 then
05 
06        else
07            table.remove(AlivePlayers,i)
08        end
09    else
10        table.remove(AlivePlayers,i)
11    end
12end

In the code above we just run through the table to see if the player/character exists, if they're still alive, etc.

That's pretty much it.

0
For the first piece of code, the if statement going into a repeat loop - you can do the same thing with a while statement. Great answer! while #game.Players:GetPlayers() < 10 do wait(1) end pidgey 548 — 5y
Ad

Answer this question