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

How to check if all the values in the table are a same?

Asked by
gitrog 326 Moderation Voter
6 years ago

Alright, I have a table, and I want to see if all the values are the same. If all the values are the same, I want it to output the value, and if they aren't, I want nothing to happen.

If this helps. It's a territory control script. If all the IDs in the script are the same, it goes to that group. If they're not all the same, nothing happens.

while true do
    local factions = {} --Create an empty table to store the factions

    --Add the values to the table
    for i, child in pairs(script:GetChildren()) do
        factions[i] = child.Value
    end

    --Do whatever I gotta do to check if they're all the same.  

    wait(0.5) --Update twice a second
end

1 answer

Log in to vote
2
Answered by 6 years ago
Edited 6 years ago

Here is what you would do:

while true do
    local factions = {} --Create an empty table to store the factions

    --Add the values to the table
    for i, child in pairs(script:GetChildren()) do
        factions[i] = child.Value
    end

    if #factions > 0 then
        local check = factions[1]
        --USE TAB TO INDENT COME ON NOW MY CODE IS GONNA BE MISALIGNED
        local success = true
        for _, compare in pairs(factions) do
            if compare ~= check then
                success = false
                break
            end
        end
        --do something with the success value.
    end
    wait(0.5) --Update twice a second
end

So what this does, is grab the first value of the table, and compare if the rest of the table is equivalent to the first value of the table. Also, READ MY BIO. Hope this helps!

0
Lol, every once in a while I see this guy saying, "Read my bio." It's so funnyXD rilgundam 65 — 6y
0
I'll test this in the morning. And, I follow everything in your bio! ;) gitrog 326 — 6y
0
I am pretty sure that you can access a UI using a server script... @hiimgoodpack KingLoneCat 2642 — 6y
2
You cannot with FE. hiimgoodpack 2009 — 6y
0
You are able to if the script exists as a descendant of the GUI element, though it should be avoided, it's still possible. ScriptGuider 5640 — 6y
Ad

Answer this question