Quote:
Originally Posted by WildCard65
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);
}
}
}