Advertisement
Guest User

Startvote.sk [InQii]

a guest
Apr 15th, 2014
535
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.77 KB | None | 0 0
  1. options:
  2. votesymbol: &7[&2Vote&7]&f
  3.  
  4. command startvote [<text>]:
  5. permission: startvote.command
  6. trigger:
  7. if arg 1 is set:
  8. broadcast "{@votesymbol} %arg 1%"
  9. broadcast "{@votesymbol} Vote with &2/yes&f or &4/no&f, you have 30 seconds"
  10. set {vote.status} to true
  11. set {votes.in.favor} to 0
  12. set {votes.in.contrast} to 0
  13. wait 30 seconds
  14. clear {vote.status}
  15. broadcast "{@votesymbol} &2%{votes.in.favor}%&f in favor and &4%{votes.in.contrast}%&f in contrast"
  16. if {votes.in.favor} is less than {votes.in.contrast}:
  17. broadcast "{@votesymbol} More votes for &4NO"
  18. if {votes.in.favor} is equal to {votes.in.contrast}:
  19. broadcast "{@votesymbol} The Vote was even"
  20. if {votes.in.contrast} is less than {votes.in.favor}:
  21. broadcast "{@votesymbol} More votes for &2YES"
  22.  
  23. clear {votes.in.favor}
  24. clear {votes.in.contrast}
  25. clear {vote.status}
  26. else:
  27. send "{@votesymbol} Use /starvote <text>"
  28.  
  29. command yes:
  30. usage: vote
  31. trigger:
  32. if {vote.status} is true:
  33. if {%player%.voted} is not set:
  34. set {votes.in.favor} to {votes.in.favor} + 1
  35. set {%player%.voted} to "yes"
  36. send "{@votesymbol} You voted with 'Yes'"
  37. wait 35 seconds
  38. clear {%player%.voted}
  39. else:
  40. send "{@votesymbol} You allready voted"
  41. else:
  42. send "{@votesymbol} There is no Vote"
  43.  
  44. command no:
  45. usage: vote
  46. trigger:
  47. if {vote.status} is true:
  48. if {%player%.voted} is not set:
  49. set {votes.in.contrast} to {votes.in.contrast} + 1
  50. set {%player%.voted} to "yes"
  51. send "{@votesymbol} You voted with 'No'"
  52. wait 35 seconds
  53. clear {%player%.voted}
  54. else:
  55. send "{@votesymbol} You allready voted"
  56. else:
  57. send "{@votesymbol} There is no Vote"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement