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

Galileo 1.1.290 (a feature rich map voting plugin)


Post New Thread Reply   
 
Thread Tools Display Modes
Brad
AMX Mod X Team Member
Join Date: Jun 2004
Old 06-20-2009 , 21:40   Re: Galileo 1.1.290 (a feature rich map voting plugin)
Reply With Quote #491

If there is no recentmaps.dat file, that's why it's not working for you. You need to make sure Galileo can create the file. You might have to create the galileo directory yourself.
__________________
Brad is offline
DarkAlucard87
Member
Join Date: Feb 2009
Old 06-20-2009 , 22:32   Re: Galileo 1.1.290 (a feature rich map voting plugin)
Reply With Quote #492

i hae directory, and there is one empty file: "intentionally initally empty.txt". I will create recentmaps.dat tomorrow (in a few h) manually, probably than it works.

I really dunno whats the problem, i've done anything like in mainpost. Copied all Folders and so on
DarkAlucard87 is offline
DarkAlucard87
Member
Join Date: Feb 2009
Old 06-21-2009 , 06:05   Re: Galileo 1.1.290 (a feature rich map voting plugin)
Reply With Quote #493

So i created dat-file and it dont works, no recentmaps no way to nominate, ever says map cannot be found... i checked everything... dunno whats the problem
DarkAlucard87 is offline
Brad
AMX Mod X Team Member
Join Date: Jun 2004
Old 06-21-2009 , 09:56   Re: Galileo 1.1.290 (a feature rich map voting plugin)
Reply With Quote #494

Replace the entire map_writeRecentList function with the one below. Then, change the map and then look in your error logs to see if it generated an error. If so, post the error here.
Code:
public map_writeRecentList()
{
    new filename[256];
    formatex(filename, sizeof(filename)-1, "%s/recentmaps.dat", DIR_DATA);

    new file = fopen(filename, "wt");
    if (file)
    {
        fprintf(file, "%s", g_currentMap);

        for (new idxMap = 0; idxMap < get_pcvar_num(cvar_banRecent) - 1; ++idxMap)
        {
            fprintf(file, "^n%s", g_recentMap[idxMap]);
        }
        
        fclose(file);
    }
    else
    {
        log_error(AMX_ERR_NOTFOUND, "%L", LANG_SERVER, "GAL_MAPS_FILEMISSING", filename);
    }
}
__________________
Brad is offline
DarkAlucard87
Member
Join Date: Feb 2009
Old 06-21-2009 , 18:02   Re: Galileo 1.1.290 (a feature rich map voting plugin)
Reply With Quote #495

its also dont works correctly... Ive now changed the Plugin to Deagles It has not so much functions but it works for me
DarkAlucard87 is offline
Brad
AMX Mod X Team Member
Join Date: Jun 2004
Old 06-21-2009 , 21:55   Re: Galileo 1.1.290 (a feature rich map voting plugin)
Reply With Quote #496

It wasn't supposed to work any differently, other than possibly logging an error. I'm glad you found a map manager to your liking.
__________________
Brad is offline
ScHrAnZ DiNgEnS
Senior Member
Join Date: Sep 2007
Old 06-22-2009 , 02:11   Re: Galileo 1.1.290 (a feature rich map voting plugin)
Reply With Quote #497

Itt looks like a problem with the folderowner or chmod, make shure all files have the same owner as the gameserver have and set chmod to 775 or 777 to test it.
__________________
ScHrAnZ DiNgEnS is offline
Send a message via ICQ to ScHrAnZ DiNgEnS Send a message via AIM to ScHrAnZ DiNgEnS
Jobby
New Member
Join Date: Jan 2009
Old 06-22-2009 , 17:27   Re: Galileo 1.1.290 (a feature rich map voting plugin)
Reply With Quote #498

Where is the galileo.amxx plugin file? The file isn't in the zip file..
Jobby is offline
DarkGod
SourceMod DarkCrab
Join Date: Jul 2007
Location: Sweden
Old 06-22-2009 , 17:30   Re: Galileo 1.1.290 (a feature rich map voting plugin)
Reply With Quote #499

Compile the source file and you will get it.
__________________
DarkGod is offline
Send a message via AIM to DarkGod Send a message via MSN to DarkGod
Jobby
New Member
Join Date: Jan 2009
Old 06-22-2009 , 19:26   Re: Galileo 1.1.290 (a feature rich map voting plugin)
Reply With Quote #500

Okay, now the plugin is installed on my server.

When the voting should come, this message comes: Vote creation failed; no maps found

I have maps in my maps.ini file. Anyone know what I need to fix that?

Last edited by Jobby; 06-22-2009 at 19:53.
Jobby 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 06:41.


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