Raised This Month: $51 Target: $400
 12% 

Deagles' Map Management 3.23


Post New Thread Reply   
 
Thread Tools Display Modes
bmann_420
AMX_Super Pooper
Join Date: Jan 2005
Location: [SuperCentral.co]
Old 04-14-2009 , 04:00   Re: Deagles' Map Management 3.23
Reply With Quote #741

Yes, TY like Dynamic said. once bits wants me to release another I will, unless he wants to take this thread
__________________
bmann_420 is offline
Rockon
Junior Member
Join Date: Dec 2007
Old 04-14-2009 , 04:43   Re: Deagles' Map Management 3.23
Reply With Quote #742

Quote:
Originally Posted by DynamicBits View Post
Thanks for finding those! Your corrections, along with a minor Swedish language fix, are currently available via my SVN repository, and should become part of the next full release of this plugin.


--
Andy
Hm) Thanks!
Then here to you the added and improved transfer (some problems are solved with a hyphenation). But some parts of transfer too long also do not get at line. Edit please so. For example:
Code:
format(temp, 255, "%L", LANG_PLAYER, "DMAP_NOMINATED_MAPS");
to edit

Code:
format(temp, 255, "%L", LANG_PLAYER, "DMAP_NOMINATED_MAPS1");
format(temp, 255, "%L", LANG_PLAYER, "DMAP_NOMINATED_MAPS2");
for long messages in a chat. Otherwise messages are displayed not completely =\


Here necessary tags for transfer:
1) As was.
2) A working variant.


for russian translit
1)
Code:
DMAP_NO_NOMINATIONS = карты еще не были номинированы, напиши в чате название карты - например de_dust
2)
Code:
DMAP_NO_NOMINATIONS1 = Карт на будущее голосование нет! Добавь свою карту в голосование: 
DMAP_NO_NOMINATIONS2 = напиши в чат de_dust.
for english translit

Code:
DMAP_NO_NOMINATIONS1 = No maps have been nominated so far, type nominate map_name to nominate a map
DMAP_NO_NOMINATIONS2 =
If you are interested in my variant of translation, I can help with all Russian translation for next versions.

Rockon
Rockon is offline
Rockon
Junior Member
Join Date: Dec 2007
Old 04-14-2009 , 06:41   Re: Deagles' Map Management 3.23
Reply With Quote #743

BIG FIX
Quote:
Originally Posted by mats View Post
When the map has been chosen and the plugin says the nextmap is: ... everyone gots kicked on my server

Code:
"amx_nextmap" changed to "howhighcanugo"
Host_Error: UserMsg: Not Present on Client 255

Connecting to 217.19.17.11:27015
its a tfc server
The problem arises at a conclusion to the message screen. It is necessary to change in transfer of a line:

Code:
[ru]
DMAP_MAP_WINS = Внимание: Карта %s победила с %d голосов.^nкарта сменится после етого раунда
DMAP_MAP_WINS2 = Внимание: карта %s победила с %d голосов.^nкарта сменится
edit
Code:
[ru]
DMAP_MAP_WINS = Attention: Map %s wins with %d Votes.^nMap will change at end of this round
DMAP_MAP_WINS2 = Attention: Map %s wins with %d Votes.^nMap will change
fix bag in cod pls
Rockon is offline
Rockon
Junior Member
Join Date: Dec 2007
Old 04-14-2009 , 07:05   Re: Deagles' Map Management 3.23
Reply With Quote #744

I have solved a problem so: taking a code from version 3.21 I has edited it, having changed a message conclusion:

search public check_votes()

edit

Code:
if (nvotes[b] && nvotes[maps_to_select+1] <= nvotes[b]) {
        set_cvar_string("amx_nextmap", nmaps[nnextmaps[b]]);
        new smap[32];
        get_cvar_string("amx_nextmap", smap, 31);
        new players[32], inum;
        get_players(players, inum, "c");
        if (quiet != 2) {
            if (timeleft <= 0 || timeleft > 300) {
                set_hudmessage(222, 70,0, -1.0, 0.36, 0, 4.0, 10.0, 2.0, 2.0, 4);
                show_hudmessage(0, "%L", LANG_PLAYER, "DMAP_MAP_WINS", nmaps[nnextmaps[b]], nvotes[b], timeleft);
            } else {
                set_hudmessage(0, 152, 255, -1.0, 0.22, 0, 4.0, 7.0, 2.1, 1.5, 4);
                if (get_pcvar_float(pEnforceTimelimit) == 1.0 && bIsCstrike) {
                    show_hudmessage(0, "%L %L", LANG_PLAYER, "DMAP_MAP_WINS2", nmaps[nnextmaps[b]], nvotes[b], LANG_PLAYER, "DMAP_IN_SECONDS", timeleft);
                } else {
                    show_hudmessage(0, "%L %L", LANG_PLAYER, "DMAP_MAP_WINS2", nmaps[nnextmaps[b]], nvotes[b], LANG_PLAYER, "DMAP_SHORTLY");
                }
                if (iscustommap(nmaps[nnextmaps[b]]) && usestandard) {
                    client_print(0, print_notify, "%L", LANG_PLAYER, "DMAP_DOWNLOAD_CUSTOM_MAP");
                }
            }
            if ((containi(mapsurl, "www") != -1 || containi(mapsurl, "http") != -1) && iscustommap(nmaps[nnextmaps[b]])) {
                //set_hudmessage(0, 152, 255, -1.0, 0.70, 1, 4.0, 12.0, 2.1, 1.5, 7);
                client_print(0, print_chat, "%L", LANG_PLAYER, "DMAP_DOWNLOAD_MAPS_URL", mapsurl);
            }
            if (quiet != 1) {
                client_cmd(0, "speak ^"barney/letsgo^"");    //quiet=0 (words and sounds) quiet=1 (words only, no sound) quiet=2 (no sound, no words)
            }
        }
    }
To change on

Code:
    if (nvotes[b] && nvotes[maps_to_select+1] <= nvotes[b]) {
        set_cvar_string("amx_nextmap", nmaps[nnextmaps[b]]);
        new smap[32];
        get_cvar_string("amx_nextmap", smap, 31);
        new players[32], inum;
        get_players(players, inum, "c");
        if (quiet != 2) {
            new whenChange[40];
            if (get_cvar_float("enforce_timelimit") == 1.0 && bIsCstrike) {
                format(whenChange, 39, "%L", LANG_PLAYER, "DMAP_IN_SECONDS", timeleft);
            } else {
                format(whenChange, 39, "%L", LANG_PLAYER, "DMAP_SHORTLY");
            }
            set_hudmessage(222, 70,0, -1.0, 0.36, 0, 4.0, 10.0, 2.0, 2.0, 4);
            if (timeleft <= 0 || timeleft > 300) {
                show_hudmessage(0, "%L", LANG_PLAYER, "DMAP_MAP_WINS", nmaps[nnextmaps[b]], nvotes[b], timeleft);
            } else {
                if (iscustommap(nmaps[nnextmaps[b]]) && usestandard) {
                    set_hudmessage(0, 152, 255, -1.0, 0.22, 0, 4.0, 7.0, 2.1, 1.5, 4);
                    
            {
                if (iscustommap(nmaps[nnextmaps[b]]) && usestandard) {
                    set_hudmessage(0, 152, 255, -1.0, 0.22, 0, 4.0, 7.0, 2.1, 1.5, 4);
                    show_hudmessage(0, "%L", LANG_PLAYER, "DMAP_MAP_WINS2", nmaps[nnextmaps[b]], nvotes[b], whenChange);
                    //set_hudmessage(0, 152, 255, -1.0, 0.38, 0, 4.0, 7.0, 2.1, 1.5, 7);
                    client_print(0, print_notify, "%L", LANG_PLAYER, "DMAP_DOWNLOAD_CUSTOM_MAP");
                } else {
                    set_hudmessage(0, 152, 255, -1.0, 0.22, 0, 4.0, 7.0, 2.1, 1.5, 4);
                    show_hudmessage(0, "%L", LANG_PLAYER, "DMAP_MAP_WINS2", nmaps[nnextmaps[b]], nvotes[b], whenChange);
                }
            }
            if ((containi(mapsurl, "www") != -1 || containi(mapsurl, "http") != -1) && iscustommap(nmaps[nnextmaps[b]])) {
                //set_hudmessage(0, 152, 255, -1.0, 0.70, 1, 4.0, 12.0, 2.1, 1.5, 7);
                client_print(0, print_chat, "%L", LANG_PLAYER, "DMAP_DOWNLOAD_MAPS_URL", mapsurl);
            }
            if (quiet != 1) {
                client_cmd(0, "speak ^"barney/letsgo^"");    //quiet=0 (words and sounds) quiet=1 (words only, no sound) quiet=2 (no sound, no words)
            }
        }
    }
PS Sorry, I took more out-of-date code, but it works
Rockon is offline
NeO|GoD|LDR|SturmTiger
Member
Join Date: Apr 2006
Old 04-16-2009 , 00:01   Re: Deagles' Map Management 3.23
Reply With Quote #745

ML_NOTFOUND: DMAP_CANT_NOMINATE_LASTMA

I followed the instructions for the installation..and I get this error
NeO|GoD|LDR|SturmTiger is offline
DarkGod
SourceMod DarkCrab
Join Date: Jul 2007
Location: Sweden
Old 04-16-2009 , 02:49   Re: Deagles' Map Management 3.23
Reply With Quote #746

.txt -> amxmodx/data/lang
__________________
DarkGod is offline
Send a message via AIM to DarkGod Send a message via MSN to DarkGod
NeO|GoD|LDR|SturmTiger
Member
Join Date: Apr 2006
Old 04-18-2009 , 00:24   Re: Deagles' Map Management 3.23
Reply With Quote #747

I still cannot get this to work , its rather troubleing , i get crazy errors like the one I posted.
NeO|GoD|LDR|SturmTiger is offline
Rockon
Junior Member
Join Date: Dec 2007
Old 04-18-2009 , 04:16   Re: Deagles' Map Management 3.23
Reply With Quote #748

Quote:
Originally Posted by NeO|GoD|LDR|SturmTiger View Post
I still cannot get this to work , its rather troubleing , i get crazy errors like the one I posted.
Yes yes
You have installed last version? Or update your version?
Update your file deagsmapmanager.txt o_O
Your version Deagles' Map Management 3.23? Check up once again
Rockon is offline
hjkwe654
Member
Join Date: Sep 2005
Location: Taiwan
Old 04-18-2009 , 09:19   Re: Deagles' Map Management 3.23
Reply With Quote #749

suggest: use a function in offical amxx 'mapchooser' plugin , it called "loadSettings()" (more faster load maps list)

because i put my maps name in files (over 4,000 maps),server loading so slow
hjkwe654 is offline
mimozmi
Junior Member
Join Date: Dec 2008
Old 04-19-2009 , 19:43   Re: Deagles' Map Management 3.23
Reply With Quote #750

help me please
how to use this command DMAP_FINISHING_CUR_ROUND
I want to extend the time to map in the last round to finish the last round and change the map to the next round
mimozmi 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:12.


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