Voting system

  • Welcome to skUnity!

    Welcome to skUnity! This is a forum where members of the Skript community can communicate and interact. Skript Resource Creators can post their Resources for all to see and use.

    If you haven't done so already, feel free to join our official Discord server to expand your level of interaction with the comminuty!

    Now, what are you waiting for? Join the community now!

  • LOOKING FOR A VERSION OF SKRIPT?

    You can always check out skUnity Downloads for downloads and any other information about Skript!

Status
Not open for further replies.
Sep 8, 2019
3
0
0
17
Hi, I'm looking to see if anyone has a voting system (or the time to make one) which allows players to vote for another player's build, that also doesn't allow them to vote for their own. If anyone can help, please send!
 
Try This :emoji_grinning:

Code:
command /vote <player>:
    permission: vote.player
    trigger:
        if arg-1 is not "%player%":
            send "&aSuccesfully Voted For %arg-1%!"
            set {vote.%player%} to arg-1
            stop
        send "&cYou Cant Vote For Yourself! Silly!"


command /listvotes:
    permission: vote.admin
    trigger:
        loop all players:
            send "{vote.%loop-player%}"




this will only work if all players that voted are online, i can try make a skript for offline players for you if you want :emoji_grinning:
 
Status
Not open for further replies.