01.10.2010, 04:05
I don't think he is asking for commands, but for a + 1 / - 1 system.
You can easily create this by adding a global variable for a vote. i.e
Then when someone does /vote 1 (vote for map 1), you can do Map1++; which will add a vote to the array.
Then set a timer maybe 25 seconds going down, and when the timer is done, check for the highest value in an array, and change the mode to that.
You can easily create this by adding a global variable for a vote. i.e
pawn Код:
new Map1 = 0;
Then set a timer maybe 25 seconds going down, and when the timer is done, check for the highest value in an array, and change the mode to that.