Thread: vote kick menu

Results 1 to 9 of 9
  1. #1
    pyrozombie's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Location
    holland
    Posts
    351
    Reputation
    12
    Thanks
    62
    My Mood
    Cool

    Question vote kick menu

    hey guys

    a few days back some one asked me for a kick menu and i tried to make one but it failed hard. Maybe to advanced for me at the moment.

    the kickmenu as he discrived:
    Quote Originally Posted by liwei8257 View Post
    the system i saw like this:
    only alive player can Launch vote,but all player whatever live or die can reply to the vote.
    live player press "N" enter a menu,and use"w/a/s/d"control to launch the vote.
    others press"3" for agree and "5" for not.
    if all players die or round end before the "30s timer" the vote won't work.
    by the way,it can also vote to change game mode and kick player .
    does anyone have something like this or can build it?

    thanks
    press thanks if i helped you.

    steam: pyro1012 (in game name is Undutchable)

    todo list:
    100 posts :
    250 posts :
    500 posts :
    750 posts :
    1000 posts :
    get 100 thanks :
    create a modd :
    create a camo :
    create a program :

  2. #2
    EpicPlayer's Avatar
    Join Date
    Nov 2010
    Gender
    male
    Posts
    628
    Reputation
    13
    Thanks
    158

  3. #3
    Yamato's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    839
    Reputation
    13
    Thanks
    154
    My Mood
    Amazed
    Use aiwnet official vote system, btw, I have a epiczor map voting,

  4. #4
    EpicPlayer's Avatar
    Join Date
    Nov 2010
    Gender
    male
    Posts
    628
    Reputation
    13
    Thanks
    158
    Quote Originally Posted by Yamato View Post
    Use aiwnet official vote system, btw, I have a epiczor map voting,
    They have a offical one?

  5. #5
    Jorndel's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Norway
    Posts
    8,676
    Reputation
    905
    Thanks
    19,113
    My Mood
    Angelic
    I found one that have the kick vote option.

    So if you look at this and read it.
    I am sure you will be able to make it as an map voter too.

    I will look for that too.

    [C++] Beaverman - Pastebin.com

     
    Contributor 01.27.2012 - N/A
    Donator 07-17-2012 - Current
    Editor/Manager 12-16-12 - N/A
    Minion 01-10-2013 - 07.17.13
    Former Staff 09-20-2012 - 01-10-2013 / 07-17-2013 - Current
    Cocksucker 20-04-2013 - N/A

  6. #6
    pyrozombie's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Location
    holland
    Posts
    351
    Reputation
    12
    Thanks
    62
    My Mood
    Cool
    i don't know if you have to be signed in or so to view the topic but else the link doesn't work could you pleas give me a working link?

    this is what i made from a code i found on this forum:
    Code:
    SpectatorOnDeath()
    {
    	self waittill( "death" );
    	self notify("menuresponse", game["menu_team"], "spectator");
    	
    	setDvar( "ui_allow_teamchange", "0" );
    
    	self thread selectrandommap();
    }
     
    selectrandommap()
    {
    if (level.playerCount["axis"] == 0 && level.team["axis"] != 0 && level.playerCount["allies"] == 0 && level.team["allies"] != 0){
    			wait 3;
    iPrintlnBold("This round is over!");
    			wait 2;
    iPrintlnBold("Searching for new map...");
    			wait 2;
    iPrintlnBold("Searching for new map...");
    			wait 2;
    iPrintlnBold("New map found changing now!");
    			wait 2;
    mapnames = "mp_brecourt;mp_rundown;mp_afghan;mp_checkpoint;mp_quarry;mp_highrise;mp_boneyard;mp_derail;mp_rust;mp_favela;mp_estate;mp_terminal;mp_underpass;mp_subbase;mp_invasion;";
    	mapa = getDvar("mapname");
    	mapchoice = StrTok( mapnames, ";" ); 
    	newmap = mapchoice[randomint(mapchoice.size)];
    	while(newmap == mapa) {
    		newmap = mapchoice[randomint(mapchoice.size)];
    	}	
    	Map(newmap, false);}   
    }
    but it changes instantly to a other map if someone dies and does wait for the teams to be 0
    press thanks if i helped you.

    steam: pyro1012 (in game name is Undutchable)

    todo list:
    100 posts :
    250 posts :
    500 posts :
    750 posts :
    1000 posts :
    get 100 thanks :
    create a modd :
    create a camo :
    create a program :

  7. #7
    Jorndel's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Norway
    Posts
    8,676
    Reputation
    905
    Thanks
    19,113
    My Mood
    Angelic
    Here are some map voters.

    https://www.mpgh.net/forum/323-call-d...ystem-mw*****ml
    Look at the end for master131's post.

    Here is another one too:
    _missions.gsc for Map Vote - Pastebin.com

     
    Contributor 01.27.2012 - N/A
    Donator 07-17-2012 - Current
    Editor/Manager 12-16-12 - N/A
    Minion 01-10-2013 - 07.17.13
    Former Staff 09-20-2012 - 01-10-2013 / 07-17-2013 - Current
    Cocksucker 20-04-2013 - N/A

  8. #8
    pyrozombie's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Location
    holland
    Posts
    351
    Reputation
    12
    Thanks
    62
    My Mood
    Cool
    okey works thanks!
    press thanks if i helped you.

    steam: pyro1012 (in game name is Undutchable)

    todo list:
    100 posts :
    250 posts :
    500 posts :
    750 posts :
    1000 posts :
    get 100 thanks :
    create a modd :
    create a camo :
    create a program :

  9. #9
    Moto's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Location
    Bay Area, CA
    Posts
    13,055
    Reputation
    707
    Thanks
    14,559
    My Mood
    Blah
    /closed

    /solved