Advertisement
Johnanater

IceVote Configuration - 1.0.0.0

Sep 14th, 2019 (edited)
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.52 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Configuration xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  3. <RemindOnJoin>true</RemindOnJoin> // Remind player to vote for the server
  4. <ChatMessageColor>00FF00</ChatMessageColor> // Hex color code for chat
  5. <ChatMessageIconUrl>https://i.imgur.com/gFxQO6K.png</ChatMessageIconUrl> // Image for chat
  6. <VotedTodayRank>false</VotedTodayRank> // Enable "Voted today" rank, will be given when players vote
  7. <VotedTodayRankId>Voted</VotedTodayRankId> // "Voted today" group id
  8. <VoterRank>true</VoterRank> // Enable "Voter rank" for voting multiple times
  9. <VoterRankId>Voter</VoterRankId> // "Voter rank" group id
  10. <VoterRankMinimumVotes>5</VoterRankMinimumVotes> // Minimum votes for "Voter rank"
  11. <ResetVotes>false</ResetVotes> // Reset votes
  12. <ResetVotesTimeDays>30</ResetVotesTimeDays> // Time to reset votes
  13. <EnableSingleSiteMode>false</EnableSingleSiteMode> // The plugin will only recognize the first site in the list
  14. <EnableUi>true</EnableUi> // Enable the UI or use chat mode
  15. <Sites>
  16. <Site>
  17. <Name>Unturned-Servers</Name> // The name of the site, shown to the player
  18. <VoteUrl>https://unturned-servers.net/server/YOUR_SERVER/vote/</VoteUrl> // The url to send the player to vote
  19. <APIKey>YOUR_API_KEY_HERE</APIKey> // Your API key for the site
  20. <HasVotedUrl>https://unturned-servers.net/api/?object=votes&amp;element=claim&amp;key={0}&amp;steamid={1}</HasVotedUrl> // URL to check if a player has voted, use {0} for API key and {1} for Steam64
  21. <SetVotedUrl>https://unturned-servers.net/api/?action=post&amp;object=votes&amp;element=claim&amp;key={0}&amp;steamid={1}</SetVotedUrl> // URL to mark a player as voted, use {0} for API key, and {1} for Steam64
  22. </Site>
  23. <Site>
  24. <Name>UnturnedSL</Name>
  25. <VoteUrl>https://unturnedsl.com/vote/YOUR_SERVER_ID</VoteUrl>
  26. <APIKey>YOUR_SERVER_ID</APIKey>
  27. <HasVotedUrl>https://unturnedsl.com/api/dedicated/{0}/{1}</HasVotedUrl>
  28. <SetVotedUrl>https://unturnedsl.com/api/dedicated/post/{0}/{1}</SetVotedUrl>
  29. </Site>
  30. <Site>
  31. <Name>TrackyServer</Name>
  32. <VoteUrl>https://www.trackyserver.com/server/YOUR_SERVER</VoteUrl>
  33. <APIKey>YOUR_API_KEY_HERE</APIKey>
  34. <HasVotedUrl>http://www.api.trackyserver.com/vote/?action=status&amp;key={0}&amp;steamid={1}</HasVotedUrl>
  35. <SetVotedUrl>http://www.api.trackyserver.com/vote/?action=claim&amp;key={0}&amp;steamid={1}</SetVotedUrl>
  36. </Site>
  37. <Site>
  38. <Name>envul</Name>
  39. <VoteUrl>https://envul.com/YOUR_SERVER/</VoteUrl>
  40. <APIKey>YOUR_API_KEY_HERE</APIKey>
  41. <HasVotedUrl>https://api.envul.com/vote?dev_key=YOUR_DEV_KEY_HERE&amp;api_key={0}&amp;steamid={1}&amp;call=1</HasVotedUrl>
  42. <SetVotedUrl>https://api.envul.com/vote?dev_key=YOUR_DEV_KEY_HERE&amp;api_key={0}&amp;steamid={1}&amp;call=2</SetVotedUrl>
  43. </Site>
  44. </Sites>
  45. <Rewards>
  46. <Reward>
  47. <Type>money</Type>
  48. <Value>100</Value>
  49. <Message>%player% got $100 for voting!</Message>
  50. <Chance>10</Chance>
  51. </Reward>
  52. <Reward>
  53. <Type>item</Type>
  54. <Value>15,15,15,15</Value>
  55. <Message>%player% got %itemnames% for voting!</Message>
  56. <Chance>25</Chance>
  57. </Reward>
  58. <Reward>
  59. <Type>item</Type>
  60. <Value>15</Value>
  61. <Message>%player% got a %itemnames% for voting!</Message>
  62. <Chance>5</Chance>
  63. </Reward>
  64. <Reward>
  65. <Type>vehicle</Type>
  66. <Value>15</Value>
  67. <Message>%player% got a %vehiclename% for voting!</Message>
  68. <Chance>5</Chance>
  69. </Reward>
  70. <Reward>
  71. <Type>experience</Type>
  72. <Value>250</Value>
  73. <Message>%player% got 250 exp for voting!</Message>
  74. <Chance>25</Chance>
  75. </Reward>
  76. <Reward>
  77. <Type>rank</Type>
  78. <Value>VIP</Value>
  79. <Message>%player% got rank VIP for voting!</Message>
  80. <Chance>25</Chance>
  81. </Reward>
  82. <Reward>
  83. <Type>freekick</Type>
  84. <Value>got a free kick!</Value>
  85. <Message>%player% got a free kick!</Message>
  86. <Chance>5</Chance>
  87. </Reward>
  88. </Rewards>
  89. <CustomRewardTypes>
  90. <CustomRewardType>
  91. <Name>freekick</Name>
  92. <Commands>
  93. <Command>say "%player% %value%"</Command>
  94. <Command>kick %player% "%value%"</Command>
  95. </Commands>
  96. </CustomRewardType>
  97. <CustomRewardType>
  98. <Name>day</Name>
  99. <Commands>
  100. <Command>day</Command>
  101. </Commands>
  102. </CustomRewardType>
  103. </CustomRewardTypes>
  104. </Configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement