View Single Post
Dr. McKay
Sir Dr. SourceMod Plugin Approver Esq. Ltd. M.D. PhD
Join Date: Aug 2011
Location: Atlantis
Old 10-06-2012 , 22:42   Re: [ANY] MySQL Mapcycle
Reply With Quote #13

- Web interface download link is broken
- Your version cvar needs FCVAR_NOTIFY
- "decl TotalMaps;" needs to instead be "new TotalMaps;", because it's not initialized before you access it (TotalMaps++) currently.

PHP Code:
else if(!SQL_FetchRow(hndl))
    {
        
//Tell him that we didnt find any maps lol
        
PrintToServer("[Mysql_Mapcyle] Unable to find any maps, loading old mapcycle file");
    } 
only needs to be
PHP Code:
else
    {
        
//Tell him that we didnt find any maps lol
        
PrintToServer("[Mysql_Mapcyle] Unable to find any maps, loading old mapcycle file");
    } 
__________________

Last edited by Dr. McKay; 10-06-2012 at 22:42.
Dr. McKay is offline