Raised This Month: $ Target: $400
 0% 

FF2 Freak Fortress 2 1.10.14 Released


  
 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
Research
SourceMod Donor
Join Date: Nov 2011
Old 11-22-2015 , 03:09   Re: Freak Fortress 2 1.10.7 Released
Reply With Quote #11

Quote:
Originally Posted by WildCard65 View Post
Do better if you ACTUALLY provide the error that occurred and NOT ONLY the stack trace.
sorry I forget :s

error is:
Code:
L 11/21/2015 - 17:05:15: [SM] Plugin encountered error 30: Script execution timed out
L 11/21/2015 - 17:05:15: [SM] Displaying call stack trace for plugin "freak_fortress_2.smx":
L 11/21/2015 - 17:05:15: [SM]   [0]  Line 1710, D:\Server\addons\sourcemod\scripting\freak_fortress_2.sp::LoadCharacter()
L 11/21/2015 - 17:05:15: [SM]   [1]  Line 1518, D:\Server\addons\sourcemod\scripting\freak_fortress_2.sp::FindCharacters()
L 11/21/2015 - 17:05:15: [SM]   [2]  Line 1392, D:\Server\addons\sourcemod\scripting\freak_fortress_2.sp::EnableFF2()
L 11/21/2015 - 17:05:15: [SM]   [3]  Line 1277, D:\Server\addons\sourcemod\scripting\freak_fortress_2.sp::OnConfigsExecuted()

L 11/21/2015 - 17:36:40: [SM] Plugin encountered error 30: Script execution timed out
L 11/21/2015 - 17:36:40: [SM] Displaying call stack trace for plugin "freak_fortress_2.smx":
L 11/21/2015 - 17:36:40: [SM]   [0]  Line 1765, D:\Server\addons\sourcemod\scripting\freak_fortress_2.sp::LoadCharacter()
L 11/21/2015 - 17:36:40: [SM]   [1]  Line 1518, D:\Server\addons\sourcemod\scripting\freak_fortress_2.sp::FindCharacters()
L 11/21/2015 - 17:36:40: [SM]   [2]  Line 1392, D:\Server\addons\sourcemod\scripting\freak_fortress_2.sp::EnableFF2()
L 11/21/2015 - 17:36:40: [SM]   [3]  Line 1277, D:\Server\addons\sourcemod\scripting\freak_fortress_2.sp::OnConfigsExecuted()
and line 1710 is here:
Code:
if(!strcmp(section, "download"))
        {
            for(new i=1; ; i++)
            {
                IntToString(i, key, sizeof(key));
                KvGetString(BossKV[Specials], key, config, PLATFORM_MAX_PATH);
                if(!config[0])
                {
                    break;
                }

                if(FileExists(config, true))
                {
                    AddFileToDownloadsTable(config);       <<<<<<< line 1710
                }
                else
                {
                    LogError("[FF2 Bosses] Character %s is missing file '%s'!", character, config);
                }
            }
        }
line 1765:
Code:
else if(!strcmp(section, "mat_download"))
        {
            for(new i=1; ; i++)
            {
                IntToString(i, key, sizeof(key));
                KvGetString(BossKV[Specials], key, config, PLATFORM_MAX_PATH);
                if(!config[0])
                {
                    break;
                }
                Format(key, PLATFORM_MAX_PATH, "%s.vtf", config);
                if(FileExists(key, true))
                {
                    AddFileToDownloadsTable(key);
                }
                else
                {
                    LogError("[FF2 Bosses] Character %s is missing file '%s'!", character, key);
                }
                Format(key, PLATFORM_MAX_PATH, "%s.vmt", config);
                if(FileExists(key, true))
                {
                    AddFileToDownloadsTable(key);    <<<<<<<<<< line 1765
                }
                else
                {
                    LogError("[FF2 Bosses] Character %s is missing file '%s'!", character, key);
                }
            }
        }
Research is offline
 



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 21:15.


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