This site is a testing version, but all data is shared with the live forum.


Raised This Month: $ Target: $400
 0% 

DeRoiD's Mapchooser v2.33


Post New Thread Reply   
 
Thread Tools Display Modes
Ram
Member
Join Date: Jul 2011
Location: Life Coach San Diego
Old 04-27-2015 , 12:19   Re: DMC v1.63a (Mapchooser)
Reply With Quote #41

I found a new bug when he came to selecting the nextmap and if two players are on the server and do not vote. Connect time as 00:00 and not elected a random map if nobody voted.
Ram is offline
bLacK-bLooD
AlliedModders Donor
Join Date: Jun 2008
Old 04-28-2015 , 05:56   Re: DMC v1.63a (Mapchooser)
Reply With Quote #42

Quote:
Originally Posted by Ram View Post
I found a new bug when he came to selecting the nextmap and if two players are on the server and do not vote. Connect time as 00:00 and not elected a random map if nobody voted.
Yes, I confirm. If there is a vote and nobody votes, the timer get's set to 0:00 and the map doesn't change.
__________________
We all live under the same sky but we have different horizons.
bLacK-bLooD is offline
battlefield 3
Junior Member
Join Date: Jun 2011
Location: Rus
Old 04-28-2015 , 10:43   Re: DMC v1.63a (Mapchooser)
Reply With Quote #43

Update v 0.1 Russia Translation!

DMC v1.62a (Mapchooser) Translation RUS
Attached Files
File Type: zip dmc_lang.zip (3.8 KB, 103 views)

Last edited by battlefield 3; 04-28-2015 at 17:48.
battlefield 3 is offline
Send a message via ICQ to battlefield 3 Send a message via Skype™ to battlefield 3
bLacK-bLooD
AlliedModders Donor
Join Date: Jun 2008
Old 04-30-2015 , 08:40   Re: DMC v1.63a (Mapchooser)
Reply With Quote #44

Can you solve the problem stated above? If no one chooses a map, the map doesn't change any more and the timelimit gets set to 0:00.
__________________
We all live under the same sky but we have different horizons.
bLacK-bLooD is offline
.:cs.stambeto:.
Senior Member
Join Date: Feb 2010
Location: Bulgaria
Old 04-30-2015 , 12:38   Re: DMC v1.63a (Mapchooser)
Reply With Quote #45

When will a new version?
.:cs.stambeto:. is offline
bLacK-bLooD
AlliedModders Donor
Join Date: Jun 2008
Old 04-30-2015 , 14:14   Re: DMC v1.63a (Mapchooser)
Reply With Quote #46

Solved the problem with no one voting and the map not changing.

PHP Code:
#include <amxmodx>

new const PLUGIN[] = "DeRoiD's Mapchooser";
new const 
VERSION[] = "1.62a";
new const 
AUTHOR[] = "DeRoiD";

#define MapID 180912

#define R 255
#define G 255
#define B 255
#define CHUD 1.1

#define Max 200
#define MinRounds 5
#define MaxChoice 9
#define StartVoteFlag ADMIN_LEVEL_A

#pragma semicolon 1

new MapFile[64], PrevMapFile[64], MapCycle[32], MapFile_LinesMapCycle_Lines;
new 
Maps[Max][32], MapName[32], MapNames[MaxChoice][32], MapRevote[2][32], NomMaps[Max][32], NomNumNomNomed[Max];
new 
MapVote[MaxChoice], RevoteCounts[2], VoteMenuRevoteMenuMapCounterPrevMap[32], BeginCounter;
new 
AllVotesAllRevotesNext[32], RTVRTVTime[3], PlayerMap[33], ElapsedTime[3];
new 
bool:Votedbool:PlayerVoted[33], bool:ChangeMapbool:Beginedbool:inProcessbool:Revoted,
bool:PlayerRTV[33], bool:toRTVbool:AlreadyNom[33], bool:PlayerRevoted[33], bool:NeedRV;
new 
SayTextRoundsMaxRoundsoTimeLimitoRounds;

new 
Cvar_WaitVoteMenuTimeCvar_MenuDestroyTimeCvar_RTVMinuteCvar_VoteCounter,
Cvar_NomChanceCvar_VoteSoundCvar_ExtendCvar_StartRevoteTimeCvar_VotePercentMin,
Cvar_NominationCvar_PlayedMapsCvar_RTVCvar_VoteVariableCvar_RTVMinCvar_Mod,
Cvar_ChangeSpeedCvar_MaxMapsCvar_WaitRevoteMenuTimeCvar_HudModCvar_OnlyNextRound;

new 
Prefix[32];

new const 
MapMenuCommands[][] =
{
    
"/playedmaps",
    
"/pm",
    
"!playedmaps",
    
"!pm",
    
"playedmaps",
    
"pm"
};
new const 
TimeLeftCommands[][] =
{
    
"/timeleft",
    
"/tl",
    
"!timeleft",
    
"!tl",
    
"timeleft",
    
"tl"
};
new const 
NextMapCommands[][] =
{
    
"/nextmap",
    
"/nm",
    
"!nextmap",
    
"!nm",
    
"nextmap",
    
"nm"
};
new const 
AdminCommands[][] =
{
    
"/startvote",
    
"!startvote",
    
"startvote"
};
new const 
RTVCommands[][] =
{
    
"/rtv",
    
"!rtv",
    
"/rockthevote",
    
"!rockthevote",
    
"rockthevote",
    
"rtv"
};
new const 
NomCommands[][] =
{
    
"/nom",
    
"!nom",
    
"/nomination",
    
"!nomination",
    
"nom",
    
"nomination"
};

public 
plugin_init()
{
    
register_plugin(PLUGINVERSIONAUTHOR);
    
register_cvar(PLUGINVERSIONFCVAR_SERVER);
    
register_dictionary("dmc.txt");
    
    static 
ConfigsDir[64]; 
    
get_localinfo("amxx_configsdir"ConfigsDir63);
    
formatex(MapFile63"%s/dmc/mapdatas.dmc"ConfigsDir);
    
get_localinfo("amxx_configsdir"ConfigsDir63);
    
formatex(PrevMapFile63"%s/dmc/prevmap.dmc"ConfigsDir);
    
formatex(MapCycle31"mapcycle.txt");
    
formatex(Prefix31"!g[DMC]");
    
    
MapFile_Lines file_size(MapFile1);
    
MapCycle_Lines file_size(MapCycle1);
    
    
Cvar_Mod register_cvar("DMC_Mod""1");
    
Cvar_HudMod register_cvar("DMC_HudMod""1");
    
Cvar_ChangeSpeed register_cvar("DMC_ChangeSpeed""3.0");
    
Cvar_WaitVoteMenuTime register_cvar("DMC_WaitVoteMenuTime""10.0");
    
Cvar_WaitRevoteMenuTime register_cvar("DMC_WaitRevoteMenuTime""5.0");
    
Cvar_MenuDestroyTime register_cvar("DMC_MenuDestroyTime""5.0");
    
Cvar_RTVMinute register_cvar("DMC_RTVMinute""3");
    
Cvar_VoteCounter register_cvar("DMC_VoteCounter""15");
    
Cvar_VoteVariable register_cvar("DMC_VoteVariable""3");
    
Cvar_VotePercentMin register_cvar("DMC_VotePercent""50");
    
Cvar_MaxMaps register_cvar("DMC_MaxMaps""5");
    
Cvar_Nomination register_cvar("DMC_Nomination""1");
    
Cvar_PlayedMaps register_cvar("DMC_PlayedMaps""1");
    
Cvar_RTV register_cvar("DMC_RTV""1");
    
Cvar_VoteSound register_cvar("DMC_VoteSound""1");
    
Cvar_RTVMin register_cvar("DMC_RTVMin""2");
    
Cvar_NomChance register_cvar("DMC_NomChance""50");
    
Cvar_Extend register_cvar("DMC_Extend""15");
    
Cvar_StartRevoteTime register_cvar("DMC_StartRevoteTime""5.0");
    
Cvar_OnlyNextRound register_cvar("DMC_OnlyNextRound""0");

    
    
VoteMenu register_menuid("VoteMenu");
    
RevoteMenu register_menuid("RevoteMenu");
    
register_menucmd(VoteMenu1023"VoteMenuKeys");
    
register_menucmd(RevoteMenu1023"RevoteMenuKeys");
    
SayText get_user_msgid("SayText");
    
    
server_cmd("exec server.cfg");
    
oTimeLimit get_cvar_num("mp_timelimit");
    
MaxRounds get_cvar_num("mp_maxrounds");
    
oRounds MaxRounds;
    
    if(
get_pcvar_num(Cvar_MaxMaps) > MaxChoice)
    {
        
set_pcvar_num(Cvar_MaxMapsMaxChoice);
    }
    
    if(
get_pcvar_num(Cvar_MaxMaps) == 1)
    {
        
set_pcvar_num(Cvar_MaxMaps2);
    }
    
    if(
MapCycle_Lines-get_pcvar_num(Cvar_MaxMaps) < 0)
    {
        new 
Error[64];
        
formatex(Errorcharsmax(Error), "Only %d maps in %s file! (Min: %d)"MapCycle_LinesMapCycleget_pcvar_num(Cvar_MaxMaps));
        
log_amx(Error);
        
        if(
MapCycle_Lines 1)
        {
            
set_pcvar_num(Cvar_MaxMapsMapCycle_Lines);
            
formatex(Errorcharsmax(Error), "MaxMaps set %d"MapCycle_Lines);
            
log_amx(Error);
        }
    }
    
    
register_event("HLTV""NewRound""a""1=0""2=0");
    
    if(
get_pcvar_num(Cvar_Mod) == 0)
    {    
        
register_logevent("RestartRound"2"0=World triggered""1&Restart_Round_");
        
register_logevent("RestartRound"2"0=World triggered""1=Game_Commencing");
        
register_logevent("RoundEnd"2"0=World triggered""1=Round_End");
        
        if(
MaxRounds MinRounds)
        {
            
server_cmd("mp_maxrounds ^"%d^""MinRounds);
        }
        
        
server_cmd("mp_timelimit 0");
        
        
MaxRounds get_cvar_num("mp_maxrounds");
        
oRounds MaxRounds;
    }
    
    new 
Cmd[32];
    if(
get_pcvar_num(Cvar_PlayedMaps) == 1)
    {
        for(new 
Num 0Num sizeof MapMenuCommandsNum++)
        {
            
format(Cmdcharsmax(Cmd), "say %s"MapMenuCommands[Num]);
            
register_clcmd(Cmd"ShowMapMenu");
        }
    }
    
    for(new 
Num 0Num sizeof NextMapCommandsNum++)
    {
        
format(Cmdcharsmax(Cmd), "say %s"NextMapCommands[Num]);
        
register_clcmd(Cmd"ShowNextMap");
    }
    
    for(new 
Num 0Num sizeof TimeLeftCommandsNum++)
    {
        
format(Cmdcharsmax(Cmd), "say %s"TimeLeftCommands[Num]);
        
register_clcmd(Cmd"ShowTimeLeft");
    }
    
    for(new 
Num 0Num sizeof AdminCommandsNum++)
    {
        
format(Cmdcharsmax(Cmd), "say %s"AdminCommands[Num]);
        
register_clcmd(Cmd"StartVote");
    }
    
    if(
get_pcvar_num(Cvar_RTV) == 1)
    {
        for(new 
Num 0Num sizeof RTVCommandsNum++)
        {
            
format(Cmdcharsmax(Cmd), "say %s"RTVCommands[Num]);
            
register_clcmd(Cmd"RockTheVote");
        }
    }
    
    if(
get_pcvar_num(Cvar_Nomination) == 1)
    {
        for(new 
Num 0Num sizeof NomCommandsNum++)
        {
            
format(Cmdcharsmax(Cmd), "say %s"NomCommands[Num]);
            
register_clcmd(Cmd"ShowNomMenu");
        }
    }
    
    
get_mapname(MapNamecharsmax(MapName));
    
    
set_task(0.1"LoadOldMap");
    
set_task(0.2"LoadMaps");
    
set_task(0.3"LoadVoteMaps");
    
    
set_task(0.8"CheckTime"MapID-1__"b");
    
    
toRTV false;
    
set_task(0.4"SavePresentTime");
    
    
set_task 1.0"TASK_CHECKMAP"___"b" );
}
public 
SavePresentTime()
{    
    new 
Hour[32], Minute[32], Second[32];
    
format_time(Hoursizeof(Hour) - 1"%H");
    
format_time(Minutesizeof(Minute) - 1"%M");
    
format_time(Secondsizeof(Second) - 1"%S");
    
ElapsedTime[0] = str_to_num(Second);
    
ElapsedTime[1] = str_to_num(Minute);
    
ElapsedTime[2] = str_to_num(Hour);
    
RTVTime[2] = str_to_num(Hour);
    
RTVTime[1] = str_to_num(Minute)+get_pcvar_num(Cvar_RTVMinute);
    
RTVTime[0] = str_to_num(Second);
    
    if(
RTVTime[1] >= 60)
    {
        
RTVTime[1] -= 60;
        
RTVTime[2]++;
    }
}

public 
TASK_CHECKMAP ( ) {
    
    if ( 
Voted )
        
Change ( );
    
}

public 
RestartRound() {
    
Rounds 0;
    
NeedRV false;
    
ChangeMap false;
    
Voted false;
    
Revoted false;
    
inProcess false;
    
AllVotes 0;
    
    for(new 
Num 0Num 32Num++)
    {
        
AlreadyNom[Num] = false;
        
PlayerMap[Num] = 0;
    }
    
    for(new 
Num 0Num get_pcvar_num(Cvar_MaxMaps); Num++)
    {
        
MapVote[Num] = 0;
    }
}
public 
RoundEnd() {
    if(
MaxRounds-Rounds 0)
    {
        
Rounds += 1;
    }
}
public 
NewRound()
{
    if(
get_pcvar_num(Cvar_Mod) == 1)
    {
        if(
ChangeMap && Voted && Begined && !Revoted || ChangeMap && Revoted && Begined && !Voted)
        {
            
ChangeLevel();
        }
    }
    else if(
get_pcvar_num(Cvar_Mod) == 0)
    {
        if(
Rounds >= MaxRounds)
        {
            if(
ChangeMap && Voted && Begined && !Revoted || ChangeMap && Revoted && Begined && !Voted)
            {
                
ChangeLevel();
            }
        }
    }
}
public 
StartVote(id)
{
    if(
get_user_flags(id) & StartVoteFlag)
    {
        if(!
inProcess)
        {
            
NeedRV false;
            
ChangeMap false;
            
Revoted false;
            
Voted false;
            new 
String[32];
            
float_to_str(get_pcvar_float(Cvar_WaitVoteMenuTime), String2);
            
replace_all(String2".""");
            
set_task(get_pcvar_float(Cvar_WaitVoteMenuTime), "StartMapChooser"MapID+3);
            
Begined true;
            
client_cmd(0"spk ^"get red(e80ninety(s45to check(e20) use bay(s18mass(e42cap(s50)^"");
            
inProcess true;
            
            if(
get_pcvar_num(Cvar_Mod) == 1)
            {
                
server_cmd("mp_timelimit 0");
            }
            else if(
get_pcvar_num(Cvar_Mod) == 0)
            {
                
Rounds MaxRounds;
            }
            
            if(
get_pcvar_num(Cvar_HudMod) == 1)
            {
                
remove_task(MapID+8123);
                
BeginCounter str_to_num(String);
                
VoteCounter();
            }
            else if(
get_pcvar_num(Cvar_HudMod) == 0)
            {
                
set_hudmessage(RGB, -1.00.2006.0get_pcvar_float(Cvar_WaitVoteMenuTime));
                
show_hudmessage(0"%L"LANG_SERVER"VOTE2"String);
            }
        }
    }
}
public 
VoteCounter()
{
    if(
BeginCounter 0)
    {
        new 
String[32];
        
num_to_str(BeginCounterString2);
        
        
set_hudmessage(RGB, -1.00.2000.1CHUD);
        if(
NeedRV)
        {
            
show_hudmessage(0"%L"LANG_SERVER"VOTE4"String);
        }
        else
        {
            
show_hudmessage(0"%L"LANG_SERVER"VOTE3"String);
        }
        
        
BeginCounter--;
        
set_task(1.0"VoteCounter"MapID+8123);
    }
}
public 
RockTheVote(id)
{
    new 
Hour[32], Minute[32], Time[2];
    
format_time(Hoursizeof(Hour) - 1"%H");
    
format_time(Minutesizeof(Minute) - 1"%M");
    
Time[0] = str_to_num(Hour);
    
Time[1] = str_to_num(Minute);
    
    if(
Time[0] > RTVTime[2]
    || 
Time[0] == RTVTime[2] && Time[1] >= RTVTime[1])
    
toRTV true;
    
    if(
PlayerRTV[id] || Voted || inProcess || !toRTV)
    {
        if(!
toRTV)
        {
            if(
RTVTime[2] > Time[0])
            {
                
print_color(id"%s %L"PrefixLANG_SERVER"RTV2", (RTVTime[1]+60)-Time[1]);
            }
            else
            {
                
print_color(id"%s %L"PrefixLANG_SERVER"RTV2"RTVTime[1]-Time[1]);
            }
        }
        if(
PlayerRTV[id])
        
print_color(id"%s %L"PrefixLANG_SERVER"RTV1");
        
        return 
PLUGIN_HANDLED;
    }
    
    
PlayerRTV[id] = true;
    
RTV++;
    
    new 
Players[32], Num;
    
get_players(PlayersNum"c");
    
    if(
RTV >= Num/get_pcvar_num(Cvar_RTVMin))
    {
        new 
String[32];
        
float_to_str(get_pcvar_float(Cvar_WaitVoteMenuTime), String2);
        
replace_all(String2".""");
        
set_task(get_pcvar_float(Cvar_WaitVoteMenuTime), "StartMapChooser"MapID+3);
        
Begined true;
        
inProcess true;
        
        if(
get_pcvar_num(Cvar_Mod) == 1)
        {
            
server_cmd("mp_timelimit 0");
        }
        else if(
get_pcvar_num(Cvar_Mod) == 0)
        {
            
Rounds MaxRounds;
        }
        
        if(
get_pcvar_num(Cvar_HudMod) == 1)
        {
            
remove_task(MapID+8123);
            
BeginCounter str_to_num(String);
            
VoteCounter();
        }
        else if(
get_pcvar_num(Cvar_HudMod) == 0)
        {
            
set_hudmessage(RGB, -1.00.2006.0get_pcvar_float(Cvar_WaitVoteMenuTime));
            
show_hudmessage(0"%L"LANG_SERVER"VOTE1"String);
        }
    }
    else
    {
        
print_color(0"%s %L"PrefixLANG_SERVER"RTV3", (Num/get_pcvar_num(Cvar_RTVMin))-RTV);
    }
    
    return 
PLUGIN_HANDLED;
}
public 
Extend()
{
    
NeedRV false;
    
ChangeMap false;
    
Begined false;
    
Voted false;
    
Revoted false;
    
inProcess false;
    
AllVotes 0;
    
AllRevotes 0;
    
    for(new 
Num 0Num 32Num++)
    {
        
AlreadyNom[Num] = false;
        
PlayerMap[Num] = 0;
        
PlayerVoted[Num] = false;
        
PlayerRevoted[Num] = false;
    }
    
    for(new 
Num 0Num NomNum++)
    {
        
NomMaps[Num] = "";
    }
    
    for(new 
Num 0Num MaxNum++)
    {
        
Nomed[Num] = 0;
    }
    
    for(new 
Num 0Num get_pcvar_num(Cvar_MaxMaps); Num++)
    {
        
MapNames[Num] = "";
        
MapVote[Num] = 0;
    }
    
    
RTV 0;
    
Nom 0;
    
LoadVoteMaps();
    
LoadNomMaps();
    
Next "";
}
public 
CheckTime()
{
    static 
Time[3];
    
Time[0] = get_timeleft();
    
Time[1] = Time[0] / 60;
    
Time[2] = Time[1] / 60;
    
Time[0] = Time[0] - Time[1] * 60;
    
Time[1] = Time[1] - Time[2] * 60;
    
    if(
get_pcvar_num(Cvar_Mod) == 1)
    {
        if(
Time[1] <= get_pcvar_num(Cvar_VoteVariable) && !Begined && !inProcess)
        {
            new 
String[32];
            
float_to_str(get_pcvar_float(Cvar_WaitVoteMenuTime), String2);
            
replace_all(String2".""");
            
            if(
get_pcvar_num(Cvar_HudMod) == 1)
            {
                
remove_task(MapID+8123);
                
BeginCounter str_to_num(String);
                
VoteCounter();
            }
            else if(
get_pcvar_num(Cvar_HudMod) == 0)
            {
                
set_hudmessage(RGB, -1.00.2006.0get_pcvar_float(Cvar_WaitVoteMenuTime));
                
show_hudmessage(0"%L"LANG_SERVER"VOTE3"String);
            }
        
            
set_task(get_pcvar_float(Cvar_WaitVoteMenuTime), "StartMapChooser"MapID+3);
            
Begined true;
            
inProcess true;
        }
    
        if(
Time[0] <= && Time[1] == && Time[2] == 0)
        {
            
server_cmd("mp_timelimit 0");
            if(!
ChangeMap && Voted && !inProcess && !Revoted
            
|| !ChangeMap && Revoted && !inProcess && !Voted)
            {
                if(
get_pcvar_num(Cvar_OnlyNextRound) == 1)
                {
                    
print_color(0"%s %L"PrefixLANG_SERVER"MCAR");
                    
ChangeMap true;
                }
                else if(
get_pcvar_num(Cvar_OnlyNextRound) == 0)
                {
                    
ChangeMap true;
                    
ChangeLevel();
                }
            }
        }
    }
    else if(
get_pcvar_num(Cvar_Mod) == 0)
    {
        if(
Rounds == MaxRounds-get_pcvar_num(Cvar_VoteVariable) && !Begined && !inProcess)
        {
            new 
String[32];
            
float_to_str(get_pcvar_float(Cvar_WaitVoteMenuTime), String2);
            
replace_all(String2".""");
            
            if(
get_pcvar_num(Cvar_HudMod) == 1)
            {
                
remove_task(MapID+8123);
                
BeginCounter str_to_num(String);
                
VoteCounter();
            }
            else if(
get_pcvar_num(Cvar_HudMod) == 0)
            {
                
set_hudmessage(RGB, -1.00.2006.0get_pcvar_float(Cvar_WaitVoteMenuTime));
                
show_hudmessage(0"%L"LANG_SERVER"VOTE3"String);
            }
            
            
set_task(get_pcvar_float(Cvar_WaitVoteMenuTime), "StartMapChooser"MapID+3);
            
Begined true;
            
inProcess true;
        }
        
        if(
Rounds >= MaxRounds && !ChangeMap && Voted
        
|| Rounds >= MaxRounds && !ChangeMap && Revoted)
        {
            
print_color(0"%s %L"PrefixLANG_SERVER"MCAR");
            
ChangeMap true;
        }
    }
    
    if(!
toRTV)
    {
        new 
Hour[32], Minute[32];
        
format_time(Hoursizeof(Hour) - 1"%H");
        
format_time(Minutesizeof(Minute) - 1"%M");
        
Time[2] = str_to_num(Hour);
        
Time[1] = str_to_num(Minute);
        
        if(
RTVTime[2] == Time[2] && RTVTime[1]+get_pcvar_num(Cvar_RTVMinute) <= Time[1])
        {
            
toRTV true;
        }
    }
}
public 
StartMapChooser()
{
    
remove_task(MapID+3);
    
ChangeMap false;
    
Voted false;
    
MapCounter get_pcvar_num(Cvar_VoteCounter);
    
Counter();
    
client_cmd(0"spk Gman/Gman_Choose%i"random_num(12));
}
public 
Change()
{
    
server_cmd("changelevel ^"%s^""Next);
}
public 
ShowTimeLeft()
{
    if(
get_pcvar_num(Cvar_Mod) == 1)
    {
        static 
Time[3];
        
Time[0] = get_timeleft();
        
Time[1] = Time[0] / 60;
        
Time[2] = Time[1] / 60;
        
Time[0] = Time[0] - Time[1] * 60;
        
Time[1] = Time[1] - Time[2] * 60;
        if(
ChangeMap && Voted && Begined && !Revoted || ChangeMap && Revoted && Begined && !Voted)
        {
            
print_color(0"!y%L!g 0!y:!g00!y:!g00"LANG_SERVER"TL");
        }
        else
        {
            
print_color(0"!y%L!g %d%!y:!g%02d!y:!g%02d"LANG_SERVER"TL"Time[2], Time[1], Time[0]);
        }
    }
    else if(
get_pcvar_num(Cvar_Mod) == 0)
    {
        
print_color(0"%s!g %L"PrefixLANG_SERVER"RM"MaxRounds-Rounds);
    }
}
public 
ShowNextMap()
{
    new 
Status[2][32];
    
formatex(Status[0], 31"%L"LANG_SERVER"NYT");
    
formatex(Status[1], 31"%L"LANG_SERVER"VIP");
    if(
strlen(Next) > 2)
    
print_color(0"%s!y %L!g %s"PrefixLANG_SERVER"NM"Next);
    else
    {
        if(
inProcess)
        
print_color(0"!y%L!g %s"LANG_SERVER"NM"Status[1]);
        else
        
print_color(0"!y%L!g %s"LANG_SERVER"NM"Status[0]);
    }
}
public 
Counter()
{
    if(
MapCounter 1)
    {
        
Voted true;
        
        
CheckVotes();
        
        for(new 
NumNum 32Num++)
        {
            
ShowVoteMenu(Num);
        }
    
        return;
    }
    
    
MapCounter--;
    
    
set_task(1.0"Counter"MapID+1);
    
    for(new 
NumNum 32Num++)
    {
        
ShowVoteMenu(Num);
    }
}
public 
NextMap()
{
    
remove_task(MapID-4);
    
set_task(get_pcvar_float(Cvar_MenuDestroyTime), "DestroyVoteMenu"MapID-4);
    
inProcess false;
}
public 
DestroyVoteMenu()
{
    for(new 
NumNum 32Num++)
    {
        
show_menu(Num0"^n"1);
    }
}
public 
ShowVoteMenu(id)
{
    new 
Menu[512], String[128], KeyMapPercent[MaxChoice];
    
    
AllVotes 0;
    
    for(new 
AllAll get_pcvar_num(Cvar_MaxMaps); All++)
    {
        
AllVotes += MapVote[All];
    }
    
    
formatex(String127"%L"LANG_SERVER"CHONM"AllVotes);
    
add(Menu511String);
    
    for(new 
NumNum get_pcvar_num(Cvar_MaxMaps); Num++)
    {
        if(
MapVote[Num] > 0)
        
MapPercent[Num] = ((MapVote[Num]*100)/(AllVotes));
        if(
equal(MapNameMapNames[Num]))
        
formatex(String127"%L"LANG_SERVER"MOP5"Num+1MapNames[Num], MapVote[Num], MapPercent[Num]);
        else
        
formatex(String127"%L"LANG_SERVER"MOPD"Num+1MapNames[Num], MapVote[Num], MapPercent[Num]);
        
add(Menu511String);
    }
    
    if(
Voted)
    
formatex(String127"%L"LANG_SERVER"MNM"Next);
    else if(!
Revoted && !Voted && MapCounter <= && NeedRV)
    
formatex(String127"%L"LANG_SERVER"MNRE");
    else
    
formatex(String127"%L"LANG_SERVER"MCSL"MapCounter);
    
    
add(Menu511String);
    
    
Key = (-1^(-1<<(get_pcvar_num(Cvar_MaxMaps))));
    
    
show_menu(idKeyMenu, -1"VoteMenu");
}
public 
VoteMenuKeys(idKey)
{
    
    if(
PlayerVoted[id] || Voted)
    {
        if(
PlayerVoted[id])
        
print_color(id"%s %L"PrefixLANG_SERVER"AVO");
        
        return;
    }
    
    if(!
Begined)
    {
        
show_menu(id0"^n"1);
        return;
    }
    
    new 
PlayerName[32];
    
get_user_name(idPlayerName31);
    
    if(
Key <= get_pcvar_num(Cvar_MaxMaps)-1)
    {
        
PlayerMap[id] = Key;
        
PlayerVoted[id] = true;
        
print_color(0"%L"LANG_SERVER"PCHO"PlayerNameMapNames[Key]);
        
MapVote[Key]++;
        if(
get_pcvar_num(Cvar_VoteSound) == 1)
        
client_cmd(0"spk buttons/lightswitch2");
    }
    
    
ShowVoteMenu(id);
}
public 
LoadVoteMaps()
{
    new 
Line[128], Map[32], LenUsed[Max], LoadedFile;
    
    
File fopen(MapCycle"rt");
    
    if(
File)
    {
        
        for(new 
lNumlNum MaxlNum++)
        {
            new 
RandomMap random(MapCycle_Lines);
            
read_file(MapCycleRandomMapLine127Len);
            
            
parse(LineMap31);
            
            if(
equali(MapMapNames[0]) || equali(MapMapNames[1]) || equali(MapMapNames[2])
            || 
equali(MapMapNames[3]) || equali(MapMapNames[4]) || equali(MapMapNames[5])
            || 
equali(MapMapNames[6]) || equali(MapPrevMap) || equali(MapMapName))
            continue;
            
            if(
Used[RandomMap] == && Loaded get_pcvar_num(Cvar_MaxMaps)-1)
            {
                
Used[RandomMap] = 1;
                
copy(MapNames[Loaded], sizeof(Map) - 1Map);
                
Loaded++;
            }
        }
        
    }
    
    
fclose(File);
    
    
MapNames[get_pcvar_num(Cvar_MaxMaps)-1] = MapName;
    
set_task(0.1"LoadNomMaps"MapID+69);
}
public 
LoadNomMaps()
{
    new 
Line[128], Map[32], File;
    
    
File fopen(MapCycle"rt");
    
    while(!
feof(File))
    {
        
fgets(FileLinecharsmax(Line));
            
        
parse(LineMap31);
        
        if(
NomNum MapCycle_Lines)
        {
            
copy(NomMaps[NomNum], sizeof(Map) - 1Map);
            
NomNum++;
        }
    }
    
    
fclose(File);
}
public 
ShowMapMenu(id)
{
    new 
MenuMenuLine[128], MapDatas[2][32], String[32];
    
formatex(MenuLine127"%L"LANG_SERVER"MPNM");
    
Menu menu_create(MenuLine"MapKey");
    
    for(new 
MapNumMapNum MapFile_Lines-1MapNum++)
    {
        
parse(Maps[MapNum], MapDatas[0], 31MapDatas[1], 31);
        
formatex(MenuLine127"%L"LANG_SERVER"PMPM"MapDatas[0], MapDatas[1]);
        
num_to_str(MapNumString2);
        
menu_additem(MenuMenuLineString);
    }
    
    
formatex(MenuLine127"%L"LANG_SERVER"MNEXT");
    
menu_setprop(MenuMPROP_NEXTNAMEMenuLine);
    
formatex(MenuLine127"%L"LANG_SERVER"MEXIT");
    
menu_setprop(MenuMPROP_EXITNAMEMenuLine);
    
formatex(MenuLine127"%L"LANG_SERVER"MBACK");
    
menu_setprop(MenuMPROP_BACKNAMEMenuLine);
    
menu_display(idMenu);
}
public 
MapKey(idMenuItem)
{
    new 
MenuNum[2], Data[2][32], Key;
    
menu_item_getinfo(MenuItemMenuNum[0], Data[0], charsmax(Data), Data[1], charsmax(Data), MenuNum[1]);
    
    
Key str_to_num(Data[0]);
    
    if(
Item == MENU_EXIT)
    {
        
menu_destroy(Menu);
        return;
    }
    
    new 
MapDatas[2][32];
    
parse(Maps[Key], MapDatas[0], 31MapDatas[1], 31);
    
    
print_color(id"%s %L"PrefixLANG_SERVER"MNP"MapDatas[0], MapDatas[1]);
}
public 
ShowNomMenu(id)
{    
    if(
Nom get_pcvar_num(Cvar_MaxMaps)-1)
    {
        
print_color(id"%s %L"PrefixLANG_SERVER"NOMT");
        return;
    }
    if(
AlreadyNom[id])
    {
        
print_color(id"%s %L"PrefixLANG_SERVER"NOMN");
        return;
    }
    if(
inProcess || Voted || Revoted)
    {
        return;
    }
    
    new 
MenuMenuLine[128];
    
formatex(MenuLine127"%L"LANG_SERVER"NOMM");
    
Menu menu_create(MenuLine"NomKey");
    
    for(new 
MapNumMapNum NomNum-get_pcvar_num(Cvar_MaxMaps); MapNum++)
    {
        if(
Nomed[MapNum] == 1)
        continue;
        
        if(
equali(NomMaps[MapNum], MapNames[0]) || equali(NomMaps[MapNum], MapNames[1]) || equali(NomMaps[MapNum], MapNames[2])
        || 
equali(NomMaps[MapNum], MapNames[3]) || equali(NomMaps[MapNum], MapNames[4]) || equali(NomMaps[MapNum], MapNames[5])
        || 
equali(NomMaps[MapNum], MapNames[6]) || equali(NomMaps[MapNum], PrevMap) || equali(NomMaps[MapNum], MapName))
        continue;
        
        
formatex(MenuLine127"%L"LANG_SERVER"NOM1"NomMaps[MapNum]);
        
menu_additem(MenuMenuLineNomMaps[MapNum]);
    }
    
    
formatex(MenuLine127"%L"LANG_SERVER"MNEXT");
    
menu_setprop(MenuMPROP_NEXTNAMEMenuLine);
    
formatex(MenuLine127"%L"LANG_SERVER"MEXIT");
    
menu_setprop(MenuMPROP_EXITNAMEMenuLine);
    
formatex(MenuLine127"%L"LANG_SERVER"MBACK");
    
menu_setprop(MenuMPROP_BACKNAMEMenuLine);
    
menu_display(idMenu);
}
public 
NomKey(idMenuItem)
{
    
    if(
Nom get_pcvar_num(Cvar_MaxMaps)-1)
    {
        
print_color(id"%s %L"PrefixLANG_SERVER"NOMT");
        return 
PLUGIN_HANDLED;
    }
    if(
AlreadyNom[id])
    {
        
print_color(id"%s %L"PrefixLANG_SERVER"NOMN");
        return 
PLUGIN_HANDLED;
    }
    if(
inProcess || Voted)
    {
        return 
PLUGIN_HANDLED;
    }
    
    new 
MenuNum[2], Data_1[32], Data_2[32], PlayerName[32];
    
menu_item_getinfo(MenuItemMenuNum[0], Data_1charsmax(Data_1), Data_2charsmax(Data_2), MenuNum[1]);
    
    if(
Item == MENU_EXIT)
    {
        
menu_destroy(Menu);
        return 
PLUGIN_HANDLED;
    }
    
    if(
equali(Data_1MapNames[0]) || equali(Data_1MapNames[1])
    || 
equali(Data_1MapNames[2]) || equali(Data_1MapNames[3])
    || 
equali(Data_1MapNames[4]) || equali(Data_1MapNames[5])
    || 
equali(Data_1MapNames[6]) || equali(Data_1PrevMap))
    return 
PLUGIN_HANDLED;
    
    
get_user_name(idPlayerNamecharsmax(PlayerName));
    
    
print_color(0"%s %L"PrefixLANG_SERVER"NOMC"PlayerNameData_1);
    
    if(
get_pcvar_num(Cvar_NomChance) >= (random_num(1,100)))
    {
        
MapNames[Nom] = Data_1;
    }
    
    
MapNames[Nom] = Data_1;
    
Nomed[Nom] = 1;
    
Nom++;
    
AlreadyNom[id] = true;
    
    return 
PLUGIN_HANDLED;
}
public 
LoadMapMenu()
{
    new 
Line[64], FileLen;
    
    
File fopen(MapFile"rt");
    
    if(
File)
    {
        for(new 
MapNumMapNum MapFile_LinesMapNum++)
        {
            
read_file(MapFileMapNumLine63Len);
            
            if(
Line[0] == ';' || strlen(Line) < 2)
                continue;
                
            
remove_quotes(Line);
            
            
copy(Maps[MapNum], sizeof(Line) - 1Line);
        }
    }
    
    
fclose(File);
}
public 
LoadMaps()
{
    
remove_task(MapID);
    
    new 
Line[64], FileMapDatas[2][32], LineNumMapNumbool:Found;
    
File fopen(MapFile"rt");
    
    while(!
feof(File))
    {
        
fgets(FileLinecharsmax(Line));
        
        if(
Line[0] == ';' || strlen(Line) < 2)
            continue;
            
        
parse(LineMapDatas[0], 31MapDatas[1], 31);
        
        if(
equal(MapDatas[0], MapName))
        {
            
MapNum str_to_num(MapDatas[1])+1;
            
format(Linesizeof Line 1"^"%s^" ^"%d^""MapNameMapNum);
            
write_file(MapFileLineLineNum);
            
Found true;
        }
        
        
LineNum++;
    }
    
    
fclose(File);
    
    if(!
Found)
    {
        
NewMap();
    }
    
    
set_task(0.5"LoadMapMenu"MapID);
}
public 
NewMap()
{
    new 
Line[32], File;
    
File fopen(MapFile"at+");
    
formatex(Linesizeof Line 1"^"%s^" ^"%d^"^n"MapName1);
    
fprintf(FileLine);
    
fclose(File);
}
public 
OldMap()
{
    new 
Line[32], File;
    
File fopen(PrevMapFile"at+");
    
formatex(Linesizeof Line 1"^"%s^""MapName);
    
write_file(PrevMapFileLine0);
    
fclose(File);
}
public 
LoadOldMap()
{
    new 
Line[32], File;
    
    
File fopen(PrevMap"rt");
    
    if(
File)
    {
        
fgets(FileLinecharsmax(Line));
            
        if(
Line[0] == ';' || strlen(Line) < 2)
            return;
            
        
remove_quotes(Line);
        
        
copy(PrevMapsizeof(Line) - 1Line);
    }
    
    
fclose(File);
}
public 
StartRevoteTime() 
{
    new 
String[32];
    
float_to_str(get_pcvar_float(Cvar_WaitRevoteMenuTime), String2);
    
replace_all(String2".""");
    
    if(
get_pcvar_num(Cvar_HudMod) == 1)
    {
        
remove_task(MapID+8123);
        
BeginCounter str_to_num(String);
        
VoteCounter();
    }
    else if(
get_pcvar_num(Cvar_HudMod) == 0)
    {
        
set_hudmessage(RGB, -1.00.2006.0get_pcvar_float(Cvar_WaitVoteMenuTime));
        
show_hudmessage(0"%L"LANG_SERVER"VOTE4"String);
    }
    
inProcess true;
    
set_task(get_pcvar_float(Cvar_StartRevoteTime), "StartRevote"MapID+33);
}
public 
StartRevote() 
{
    
Voted false;
    
Begined true;
    
MapCounter get_pcvar_num(Cvar_VoteCounter);
    
ReCounter();
    
client_cmd(0"spk Gman/Gman_Choose%d"random_num(12));
}
public 
ShowRevoteMenu(id)
{
    new 
Menu[512], String[128], KeyMapPercent[MaxChoice];
    
    
AllRevotes 0;
    
    for(new 
AllAll 2All++)
    {
        
AllRevotes += RevoteCounts[All];
    }
    
    
formatex(String127"%L"LANG_SERVER"CHONM"AllRevotes);
    
add(Menu511String);
    
    for(new 
NumNum 2Num++)
    {
        if(
RevoteCounts[Num] > 0)
        
MapPercent[Num] = ((RevoteCounts[Num]*100)/(AllRevotes));
        
formatex(String127"%L"LANG_SERVER"MOPD"Num+1MapRevote[Num], RevoteCounts[Num], MapPercent[Num]);
        
add(Menu511String);
    }
    
    if(!
Revoted)
    
formatex(String127"%L"LANG_SERVER"MCSL"MapCounter);
    else
    
formatex(String127"%L"LANG_SERVER"MNM"Next);
    
    
add(Menu511String);
    
    
Key = (-1^(-1<<(2)));
    
    
show_menu(idKeyMenu, -1"RevoteMenu");
}
public 
RevoteMenuKeys(idKey)
{
    if(
PlayerRevoted[id] || Revoted)
    {
        if(
PlayerVoted[id])
        
print_color(id"%s %L"PrefixLANG_SERVER"AVO");
        
        
ShowRevoteMenu(id);
        return;
    }
    
    if(!
Begined)
    {
        
show_menu(id0"^n"1);
        return;
    }
    
    new 
PlayerName[32];
    
get_user_name(idPlayerName31);
    
    if(
Key <= 2)
    {
        
PlayerMap[id] = Key;
        
PlayerRevoted[id] = true;
        
print_color(0"%s %L"PrefixLANG_SERVER"PCHO"PlayerNameMapRevote[Key]);
        
RevoteCounts[Key]++;
        if(
get_pcvar_num(Cvar_VoteSound) == 1)
        
client_cmd(0"spk buttons/lightswitch2");
    }
    
    
ShowRevoteMenu(id);
}
public 
ReCounter()
{
    if(
MapCounter 1)
    {
        
Revoted true;
        
CheckRevotes();
        
set_task(get_pcvar_float(Cvar_MenuDestroyTime), "DestroyVoteMenu"MapID-4);
        
inProcess false;
        
        for(new 
NumNum 32Num++)
        {
            
ShowRevoteMenu(Num);
        }
    
        return;
    }
    
    
MapCounter--;
    
    
set_task(1.0"ReCounter"MapID+211);
    
    for(new 
NumNum 32Num++)
    {
        
ShowRevoteMenu(Num);
    }
}
public 
client_disconnect(id)
{
    if(
PlayerRTV[id])
    {
        
RTV--;
        
PlayerRTV[id] = false;
    }
    if(
PlayerVoted[id])
    {
        
MapVote[PlayerMap[id]]--;
        
PlayerVoted[id] = false;
    }
    if(
PlayerRevoted[id])
    {
        
RevoteCounts[PlayerMap[id]]--;
        
PlayerRevoted[id] = false;
    }
}
stock ChangeLevel()
{
    if(
ChangeMap && Voted && Begined && !Revoted || ChangeMap && Revoted && Begined && !Voted)
    {
        
set_task(get_pcvar_float(Cvar_ChangeSpeed), "Change"MapID+2);
        
message_begin(MSG_ALLSVC_INTERMISSION);
        
message_end();
        
server_cmd("mp_timelimit ^"%d^""oTimeLimit);
        
server_cmd("mp_maxrounds ^"%d^""oRounds);
        
OldMap();
    }
}
stock print_color(const id, const input[], any:...)
{
    new 
Count 1Players[32];
    static 
Msg[191];
    
vformat(Msg190input3);
    
    
replace_all(Msg190"!g""^4");
    
replace_all(Msg190"!y""^1");
    
replace_all(Msg190"!t""^3");

    if(
idPlayers[0] = id; else get_players(PlayersCount"ch");
    {
        for (new 
0Counti++)
        {
            if (
is_user_connected(Players[i]))
            {
                
message_begin(MSG_ONE_UNRELIABLESayText_Players[i]);
                
write_byte(Players[i]);
                
write_string(Msg);
                
message_end();
            }
        }
    }
    return 
PLUGIN_HANDLED;
}
stock CheckVotes() {
    
    if(
AllVotes == 0)
    {
        
Next MapNames[0];
        return;
    }
    
    new 
VoteNum_1 0;
    
    for(new 
Num 0Num MaxChoice; ++Num)
    {
        if(
MapVote[VoteNum_1] < MapVote[Num])
        
VoteNum_1 Num;
    }
    
    if((
MapVote[VoteNum_1]*100/AllVotes) >= get_pcvar_num(Cvar_VotePercentMin))
    {
        
Revoted false;
        
Next MapNames[VoteNum_1];
        
set_cvar_string("amx_nextmap"Next);
        
        if(
get_pcvar_num(Cvar_Mod) == 1)
        {
            if(
equali(NextMapName))
            {
                new 
Hour[32], Minute[32], Second[32], pTime[3];
                
format_time(Hoursizeof(Hour) - 1"%H");
                
format_time(Minutesizeof(Minute) - 1"%M");
                
format_time(Secondsizeof(Second) - 1"%S");
                
pTime[0] = str_to_num(Second);
                
pTime[1] = str_to_num(Minute);
                
pTime[2] = str_to_num(Hour);
                
                
pTime[1] = pTime[1] - ElapsedTime[1];
                
                if(
pTime[0] >= ElapsedTime[0])
                    
pTime[0] = pTime[0] - ElapsedTime[0];
                else
                {
                    
pTime[0] = pTime[0]+60 ElapsedTime[0];
                    
pTime[1]--;
                }
                
                if(
pTime[2] == ElapsedTime[2])
                
server_cmd("mp_timelimit %d.%02d"get_pcvar_num(Cvar_Extend)+pTime[1], pTime[0]);
                else
                
server_cmd("mp_timelimit %d.%02d", (get_pcvar_num(Cvar_Extend)+pTime[1])+(60*(pTime[2]-ElapsedTime[2])), pTime[0]);
                
                
print_color(0"%s %L"PrefixLANG_SERVER"MEXTEND1"get_pcvar_num(Cvar_Extend));
                
                
Extend();
                
                
set_task(0.1"DestroyVoteMenu");
            }
        }
        else if(
get_pcvar_num(Cvar_Mod) == 0)
        {
            if(
equali(NextMapName))
            {
                
print_color(0"%s %L"PrefixLANG_SERVER"MEXTEND2"get_pcvar_num(Cvar_Extend));
                
server_cmd("mp_maxrounds ^"%d^""get_pcvar_num(Cvar_Extend)+oRounds);
                
                
Rounds 0;
                
MaxRounds get_pcvar_num(Cvar_Extend);
                
                
Extend();
                
                
set_task(0.1"DestroyVoteMenu");
            }
        }
    
        
NextMap();
        
        if(!
equali(NextMapName))
        
ShowNextMap();
    }
    else
    {
        
NeedRV true;
        
Voted false;
        
        
MapVote[VoteNum_1] = -MapVote[VoteNum_1];
        
        new 
VoteNum_1_1 0;

        for(new 
Num 0Num MaxChoice; ++Num)
        {
            if(
MapVote[VoteNum_1_1] < MapVote[Num])
            
VoteNum_1_1 Num;
        }
        
        
MapVote[VoteNum_1] = 0-MapVote[VoteNum_1];
        
        
copy(MapRevote[0], 31MapNames[VoteNum_1]);
        
copy(MapRevote[1], 31MapNames[VoteNum_1_1]);
        
        
RevoteCounts[0] = 0;
        
RevoteCounts[1] = 0;
        
        
set_task(get_pcvar_float(Cvar_StartRevoteTime), "StartRevoteTime"MapID+3);
        
print_color(0"%s %L"PrefixLANG_SERVER"RER"get_pcvar_num(Cvar_VotePercentMin));
        
        
NextMap();
    }    
}
stock CheckRevotes() {
    
    if(
AllRevotes == 0)
    {
        
Next MapRevote[0];
        return;
    }
    
    new 
VoteNum_1 0;
    
    for(new 
Num 0Num 2; ++Num)
    {
        if(
RevoteCounts[VoteNum_1] < RevoteCounts[Num])
        
VoteNum_1 Num;
    }
    
    
Next MapRevote[VoteNum_1];
    
set_cvar_string("amx_nextmap"Next);
    
Voted false;
    
NeedRV false;
    
    if(
get_pcvar_num(Cvar_Mod) == 1)
    {
        if(
equali(NextMapName))
        {
            new 
Hour[32], Minute[32], Second[32], pTime[3];
            
format_time(Hoursizeof(Hour) - 1"%H");
            
format_time(Minutesizeof(Minute) - 1"%M");
            
format_time(Secondsizeof(Second) - 1"%S");
            
pTime[0] = str_to_num(Second);
            
pTime[1] = str_to_num(Minute);
            
pTime[2] = str_to_num(Hour);
            
            
pTime[1] = pTime[1] - ElapsedTime[1];
            
            if(
pTime[0] >= ElapsedTime[0])
                
pTime[0] = pTime[0] - ElapsedTime[0];
            else
            {
                
pTime[0] = pTime[0]+60 ElapsedTime[0];
                
pTime[1]--;
            }
            
            if(
pTime[2] == ElapsedTime[2])
            
server_cmd("mp_timelimit %d.%02d"get_pcvar_num(Cvar_Extend)+pTime[1], pTime[0]);
            else
            
server_cmd("mp_timelimit %d.%02d", (get_pcvar_num(Cvar_Extend)+pTime[1])+(60*(pTime[2]-ElapsedTime[2])), pTime[0]);
            
            
print_color(0"%s %L"PrefixLANG_SERVER"MEXTEND1"get_pcvar_num(Cvar_Extend));
            
            
Extend();
            
            
set_task(0.1"DestroyVoteMenu");
        }
    }
    else if(
get_pcvar_num(Cvar_Mod) == 0)
    {
        if(
equali(NextMapName))
        {
            
print_color(0"%s %L"PrefixLANG_SERVER"MEXTEND2"get_pcvar_num(Cvar_Extend));
            
server_cmd("mp_maxrounds ^"%d^""get_pcvar_num(Cvar_Extend)+oRounds);
            
            
Rounds MaxRounds-get_pcvar_num(Cvar_Extend);
            
MaxRounds get_pcvar_num(Cvar_Extend);
            
            
Extend();
            
            
set_task(0.1"DestroyVoteMenu");
        }
    }
    
    if(!
equali(NextMapName))
    
ShowNextMap();
    
NextMap();
}
/* AMXX-Studio Notes - DO NOT MODIFY BELOW HERE
*{\\ rtf1\\ ansi\\ deff0{\\ fonttbl{\\ f0\\ fnil Tahoma;}}\n\\ viewkind4\\ uc1\\ pard\\ lang1038\\ f0\\ fs16 \n\\ par }
*/ 
Credits @ Hades Ownage
__________________
We all live under the same sky but we have different horizons.
bLacK-bLooD is offline
Ram
Member
Join Date: Jul 2011
Location: Life Coach San Diego
Old 05-04-2015 , 13:42   Re: DMC v1.63a (Mapchooser)
Reply With Quote #47

What happened to the plugin will there be improvements soon?
Ram is offline
DeRoiD
Senior Member
Join Date: Feb 2015
Old 05-05-2015 , 01:51   Re: DMC v1.63a (Mapchooser)
Reply With Quote #48

Quote:
Originally Posted by .:cs.stambeto:. View Post
When will a new version?
Yes...
__________________
DeRoiD is offline
Fuck For Fun
Veteran Member
Join Date: Nov 2013
Old 05-05-2015 , 08:32   Re: DMC v1.63a (Mapchooser)
Reply With Quote #49

Quote:
Originally Posted by DeRoiD View Post
Yes...
when = time.

something wrong with your plugin it doesn't working for me.

i dont know why.
Fuck For Fun is offline
Send a message via Skype™ to Fuck For Fun
DeRoiD
Senior Member
Join Date: Feb 2015
Old 05-06-2015 , 14:52   Re: DMC v1.77a (Mapchooser)
Reply With Quote #50

I edited!
__________________
DeRoiD is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 18:59.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode