Ranking
Wow, thanks! I hadn't thought of using a variable to link the functions! The rounding function is cool too! Thanks!
Proud iCoF Leiutenant.You strike first. I strike last.
I've got a question on mind.
Are there any functions for the script to auto-press or... "generate" a click on a button?
Sorry for the bad grammar there. :3
Sigma | Gata
Lost pet looking for home
no, there isn't.
:D
You need parens for the function arguments after the function name.
Radioactive torso's description should be, "You have cancer like wow."
You need to add parenthesise after the function name, like so:
function start() -- <== see the brackets.
    echo("buddy 0.1 made by 6d23")
end         

start() -- <== You need to call the function aswell
These are where you can put variables, to be processed by the function. For example:
function add(a,b) -- <== seperated by commas
    return a+b -- <== "return" makes the function send back whatever you set it to return
end         
Test = add(4,5) -- <== As we made the function return a+b, this will set "Test" to 9
echo(Test) -- <== Quick Test
The bits in green are comments and don't need to be removed if you don't want.
:D
hi is it possible to check spectator´s names?
i only can check the first two players but i have to check also the other players.
Bouts = get_bouts()
Spectators = get_spectators()

for i = 1,#Bouts do
    echo(Bouts[i])
end
for i = 1,#Spectators do
    echo(Spectators[i])
end
:D