There is
Custom Votes v0.5.6 (1/07)
if you are interested ?
*edit
dam it use command to extend map sm_extend
*edit
Ok, I tried make that plugin using
SM basevotes.
It not have own menu, need create.
Ok, if I have understood right your request, this cast vote
"yes" and
"no" method.
*or did you mean all those "10" "15" "20" "25" "30" are in vote ??
admin command
sm_voteextend number
Flagged to "
g" changemap
cvar
sm_vote_extend "0.60"
percent required for successful extend vote. min 0.05 - max 1.0
Do adminmenu_custom.txt
Code:
// Custom admin menu commands.
// For more information:
//
// http://wiki.alliedmods.net/Custom_Admin_Menu_%28SourceMod%29
//
// Note: This file must be in Valve KeyValues format (no multiline comments)
//
"Commands"
{
"VotingCommands"
{
"Extend Map Vote"
{
"cmd" "sm_voteextend #1"
"1"
{
"title" "Extend Map minute"
"type" "list"
"1" "10"
"2" "15"
"3" "20"
"4" "25"
"5" "30"
}
}
}
}
you could if want adminmenu_sorting.txt
Code:
/**
* The default sorting is designed to look familiar to Mani's admin menu.
* You may re-order items here for your own menu. Any items not explicitly
* sorted will be sorted by their final translated phrases for each given client.
*/
"Menu"
{
"PlayerCommands"
{
"item" "sm_slay"
"item" "sm_slap"
"item" "sm_kick"
"item" "sm_ban"
"item" "sm_gag"
"item" "sm_burn"
"item" "sm_beacon"
"item" "sm_freeze"
"item" "sm_timebomb"
"item" "sm_firebomb"
"item" "sm_freezebomb"
}
"ServerCommands"
{
"item" "sm_map"
"item" "sm_execcfg"
"item" "sm_reloadadmins"
}
"VotingCommands"
{
"item" "Extend Map Vote"
"item" "sm_cancelvote"
"item" "sm_votemap"
"item" "sm_votekick"
"item" "sm_voteban"
}
}