It's stuck at the initilization screen, and it doesn't move. The console states the following errors:
[php]Registering gamemode 'Sandbox' derived from 'base'
[openaura\gamemode\openaura\directory\cl_changelog.lua:50] attempt to concatenate local 'text' (a nil value)
Couldn't include file 'sh_coms.lua' (File not found) (@openaura\gamemode\openaura\sh_core.lua (line 3059))
Couldn't include file 'cl_hooks.lua' (File not found) (@openaura\gamemode\openaura\sh_core.lua (line 3059))
Registering gamemode 'openaura' derived from 'base'
Registering gamemode 'cidertwo' derived from 'openaura'
[/php]
At line 3059, this is stated.
[php]
-- A function to include a prefixed _file.
function openAura:IncludePrefixed(fileName)
if (string.find(fileName, "sv_") and !SERVER) then
return;
end;
if (string.find(fileName, "sh_") and SERVER) then
AddCSLuaFile(fileName);
elseif (string.find(fileName, "cl_") and SERVER) then
AddCSLuaFile(fileName);
return;
end;
include(fileName);
end;
[/php]
What exactly changed in the update, as I see no changelog.... I assume something reguarding including files. I'd like to get this fixed ASAP so I can continue hosting. Please leave suggestions.
Sorry, you need to Log In to post a reply to this thread.