Forged Alliance Forever Forged Alliance Forever Forums 2017-09-21T07:07:12+02:00 /feed.php?f=3&t=15002 2017-09-21T07:07:12+02:00 2017-09-21T07:07:12+02:00 /viewtopic.php?t=15002&p=154307#p154307 <![CDATA[Re: Brewlan "Empty map" issue]]>
yes maybe the blueprint.lua is already outdated.
Using the PreModBlueprints function is better anyways.

If you add the LOG like described in case2, you will get a logline with every blueprint that is present. 400 ingame units + brewlan. This will easy spam 800 loglines :)
You need this only one time. Just to see if the code is executed.

Greetings Uveso.

Statistics: Posted by Uveso — 21 Sep 2017, 07:07


]]>
2017-09-20T08:25:09+02:00 2017-09-20T08:25:09+02:00 /viewtopic.php?t=15002&p=154277#p154277 <![CDATA[Re: Brewlan "Empty map" issue]]> i had a user on discord who ran into the same bug (which also causes the restrictions window to not load) so i did some testing
the fix you made for the upcoming FAF patch solves the issue
however putting your edited blueprint.lua file in did not
i also added the line for additional logging and got
Code:
info: UVESO DEBUG PreModBlueprints from BrewLAN
this line like 800 times in the log

Statistics: Posted by PhilipJFry — 20 Sep 2017, 08:25


]]>
2017-09-10T20:51:10+02:00 2017-09-10T20:51:10+02:00 /viewtopic.php?t=15002&p=154059#p154059 <![CDATA[Re: Brewlan "Empty map" issue]]>
This is the first error in log:
Code:
warning: Error in file /lua/RuleInit.lua : ...faforever\gamedata\lua.nx2\lua\system\blueprints.lua(496): bad argument #1 to `upper' (string expected, got nil)

This should not be there after patching the BrewLAN blueprint file.


Please open the blueprint.lua file from this location:
Code:
C:\Users\Hismoom\Documents\My Games\Gas Powered Games\Supreme Commander Forged Alliance\Mods\BrewLAN\hook\lua\system\Blueprints.lua

now search for:
Code:
bp.FactionCategory

You should find this in line no.75

How does the line look like?

Code:
case1:         bp.FactionCategory = string.upper(bp.General.FactionName)
case2:         bp.FactionCategory = string.upper(bp.General.FactionName or "Unknown")


If i looks like case1 then you did not overwrite the right file with the blueprints.lua zip i provided in this topic.
Then please add this function to the top of the blueprints.lua file:
Code:
local OLDPreModBlueprints = PreModBlueprints
function PreModBlueprints(all_bps)
    LOG('UVESO DEBUG PreModBlueprints')
    for _, bp in all_bps.Unit do
        if not bp.General then
            bp.General = {}
        end
        bp.General.FactionName = bp.General.FactionName or "Unknown"
    end
    OLDPreModBlueprints(all_bps)
end

The error should be fixed now.

And if the line looks like case2 i guess its not loaded from the game.
We can simply check this by adding a print line for the debuglog.
Add a LOG line directly under the searched bp.FactionCategory line. should look like this:
Code:
        bp.FactionCategory = string.upper(bp.General.FactionName or "Unknown")
        LOG('UVESO DEBUG PreModBlueprints from BrewLAN')

Start a game and check if the line 'UVESO DEBUG PreModBlueprints from BrewLAN' was printed to the game.log.
If you don't find the line inside the game.log, then you have a 2nd copy of the mod where the game gets the wrong files. (Maybe!)

Statistics: Posted by Uveso — 10 Sep 2017, 20:51


]]>
2017-09-10T11:04:29+02:00 2017-09-10T11:04:29+02:00 /viewtopic.php?t=15002&p=154045#p154045 <![CDATA[Re: Brewlan "Empty map" issue]]> https://pastebin.com/fxg8GCkQ

Statistics: Posted by Saxxon — 10 Sep 2017, 11:04


]]>
2017-09-04T12:27:17+02:00 2017-09-04T12:27:17+02:00 /viewtopic.php?t=15002&p=153823#p153823 <![CDATA[Re: Brewlan "Empty map" issue]]> unless i've missed something the only log from you is the one with the direct 3D error

Statistics: Posted by PhilipJFry — 04 Sep 2017, 12:27


]]>
2017-09-04T12:10:26+02:00 2017-09-04T12:10:26+02:00 /viewtopic.php?t=15002&p=153821#p153821 <![CDATA[Re: Brewlan "Empty map" issue]]> Statistics: Posted by Saxxon — 04 Sep 2017, 12:10


]]>
2017-09-03T06:56:41+02:00 2017-09-03T06:56:41+02:00 /viewtopic.php?t=15002&p=153786#p153786 <![CDATA[Re: Brewlan "Empty map" issue]]>
Saxxon wrote:
Map with 1 mex showing all else missing


What map are you using ?

Did you tried a different map ?

Statistics: Posted by Uveso — 03 Sep 2017, 06:56


]]>
2017-09-03T06:14:15+02:00 2017-09-03T06:14:15+02:00 /viewtopic.php?t=15002&p=153785#p153785 <![CDATA[Re: Brewlan "Empty map" issue]]>
BrewLAN still not working with FAF

Statistics: Posted by Saxxon — 03 Sep 2017, 06:14


]]>
2017-08-31T11:56:17+02:00 2017-08-31T11:56:17+02:00 /viewtopic.php?t=15002&p=153701#p153701 <![CDATA[Re: Brewlan "Empty map" issue]]>
Worse, starting the game via the FAF lobby I get an "Unable to create Direct 3D" error.

Statistics: Posted by Saxxon — 31 Aug 2017, 11:56


]]>
2017-08-30T03:25:22+02:00 2017-08-30T03:25:22+02:00 /viewtopic.php?t=15002&p=153671#p153671 <![CDATA[Re: Brewlan "Empty map" issue]]>
My fix is for BrewLan version 0.755

But there are already fixes up for both, the FAF game and Brewlan itself.

FAF develop version already has this fix since 14 days:
https://github.com/FAForever/fa/commit/ ... 2db69d3621

The-Balthazar updated BrewLan 15 hours ago with a fix:
https://github.com/The-Balthazar/BrewLA ... 29a0528966

That's all i know at the moment.

Statistics: Posted by Uveso — 30 Aug 2017, 03:25


]]>
2017-08-29T22:32:35+02:00 2017-08-29T22:32:35+02:00 /viewtopic.php?t=15002&p=153666#p153666 <![CDATA[Re: Brewlan "Empty map" issue]]>
I have the same problem here and tried to use your fix but still doesnt work.
I have Brewlan 0.79 installed.
This mod without FAF but on steam works fine but with FAF it loads only like here describet.
Without the fix I got pretty much the same error like the op but with the fix I got this:
Code:
warning: Error in file /lua/RuleInit.lua : ...faforever\gamedata\lua.nx4\lua\system\blueprints.lua(1413): bad argument #1 to `lower' (string expected, got no value)
         stack traceback:
            [C]: in function `lower'
            ...faforever\gamedata\lua.nx4\lua\system\blueprints.lua(1413): in function `BrewLANRelativisticLinksUpdate'
            ...faforever\gamedata\lua.nx4\lua\system\blueprints.lua(872): in function `ModBlueprints'
            ...faforever\gamedata\lua.nx4\lua\system\blueprints.lua(679): in function `LoadBlueprints'
            ...rged alliance\gamedata\mohodata.scd\lua\ruleinit.lua(16): in main chunk



Was this fix from the 0.79 version?

Statistics: Posted by Sirzento — 29 Aug 2017, 22:32


]]>
2017-08-23T19:15:37+02:00 2017-08-23T19:15:37+02:00 /viewtopic.php?t=15002&p=153456#p153456 <![CDATA[Re: Brewlan "Empty map" issue]]> error: unable to create device

Do you have DirectX 9.0c installed ???
https://www.microsoft.com/de-de/downloa ... x?id=34429

Statistics: Posted by Uveso — 23 Aug 2017, 19:15


]]>
2017-08-23T07:40:41+02:00 2017-08-23T07:40:41+02:00 /viewtopic.php?t=15002&p=153432#p153432 <![CDATA[Re: Brewlan "Empty map" issue]]>
Best of luck, Lux.

Statistics: Posted by Luxcerv — 23 Aug 2017, 07:40


]]>
2017-08-23T07:36:25+02:00 2017-08-23T07:36:25+02:00 /viewtopic.php?t=15002&p=153431#p153431 <![CDATA[Re: Brewlan "Empty map" issue]]>
Problem is, I did update the drivers, and that didn't solve that, so at present cannot even get the game to run in FAF... Whats infuriating is this is a new machine, I should be enjoying playing games, not chronically having problems even starting them.

It appears the game.log updated, so posting what is in it as spoiler.

Spoiler: show
info: mounting maps from: C:\Users\Jim\Documents\My Games\Gas Powered Games\Supreme Commander Forged Alliance\maps\
info: checking C:\Users\Jim\Documents\My Games\Gas Powered Games\Supreme Commander Forged Alliance\maps\
info: mounting maps from: C:\ProgramData\FAForever\bin\..\user\My Games\Gas Powered Games\Supreme Commander Forged Alliance\maps\
info: checking C:\ProgramData\FAForever\bin\..\user\My Games\Gas Powered Games\Supreme Commander Forged Alliance\maps\
info: checking C:\Users\Jim\Documents\My Games\Gas Powered Games\Supreme Commander Forged Alliance\mods
info: checking C:\Users\Jim\Documents\My Games\Gas Powered Games\Supreme Commander Forged Alliance\maps
info: checking C:\ProgramData\FAForever\bin\..\user\My Games\Gas Powered Games\Supreme Commander Forged Alliance\mods
info: checking C:\ProgramData\FAForever\bin\..\user\My Games\Gas Powered Games\Supreme Commander Forged Alliance\maps
info: checking C:\ProgramData\FAForever\bin\..\gamedata\*.nxt
info: checking C:\ProgramData\FAForever\bin\..\gamedata\*.nx2
info: checking C:\Program Files (x86)\THQ\Gas Powered Games\Supreme Commander - Forged Alliance\gamedata\*.scd
info: not safe C:\Program Files (x86)\THQ\Gas Powered Games\Supreme Commander - Forged Alliance\gamedata\brewlan.scd
info: not safe C:\Program Files (x86)\THQ\Gas Powered Games\Supreme Commander - Forged Alliance\gamedata\cratedrop.scd
info: not safe C:\Program Files (x86)\THQ\Gas Powered Games\Supreme Commander - Forged Alliance\gamedata\crystalhill.scd
info: not safe C:\Program Files (x86)\THQ\Gas Powered Games\Supreme Commander - Forged Alliance\gamedata\experimentalicons.scd
info: not safe C:\Program Files (x86)\THQ\Gas Powered Games\Supreme Commander - Forged Alliance\gamedata\tead.scd
info: DISK: AddSearchPath: 'c:\users\jim\documents\my games\gas powered games\supreme commander forged alliance\maps\brew_reef', mounted as '/maps/brew_reef/'
info: DISK: AddSearchPath: 'c:\users\jim\documents\my games\gas powered games\supreme commander forged alliance\maps\cool_dual_gap_v1.v0001', mounted as '/maps/cool_dual_gap_v1.v0001/'
info: DISK: AddSearchPath: 'c:\users\jim\documents\my games\gas powered games\supreme commander forged alliance\maps\diezle dune 5v5 v2', mounted as '/maps/diezle dune 5v5 v2/'
info: DISK: AddSearchPath: 'c:\users\jim\documents\my games\gas powered games\supreme commander forged alliance\maps\dual_gap_8v816pl_fixed.v0002', mounted as '/maps/dual_gap_8v816pl_fixed.v0002/'
info: DISK: AddSearchPath: 'c:\users\jim\documents\my games\gas powered games\supreme commander forged alliance\maps\dual_gap_forever.v0002', mounted as '/maps/dual_gap_forever.v0002/'
info: DISK: AddSearchPath: 'c:\users\jim\documents\my games\gas powered games\supreme commander forged alliance\maps\perftest', mounted as '/maps/perftest/'
info: DISK: AddSearchPath: 'c:\users\jim\documents\my games\gas powered games\supreme commander forged alliance\maps\sexy_sexy_dual_gap_v1.v0001', mounted as '/maps/sexy_sexy_dual_gap_v1.v0001/'
info: DISK: AddSearchPath: 'c:\users\jim\documents\my games\gas powered games\supreme commander forged alliance\maps\x1mp14_e3corner', mounted as '/maps/x1mp14_e3corner/'
info: DISK: AddSearchPath: 'c:\users\jim\documents\my games\gas powered games\supreme commander forged alliance\mods\brewlan', mounted as '/mods/brewlan/'
info: DISK: AddSearchPath: 'c:\users\jim\documents\my games\gas powered games\supreme commander forged alliance\mods\brewlan_gameplay', mounted as '/mods/brewlan_gameplay/'
info: DISK: AddSearchPath: 'c:\users\jim\documents\my games\gas powered games\supreme commander forged alliance\mods\brewlan_modules', mounted as '/mods/brewlan_modules/'
info: DISK: AddSearchPath: 'c:\users\jim\documents\my games\gas powered games\supreme commander forged alliance\mods\brewlan_plenae', mounted as '/mods/brewlan_plenae/'
info: DISK: AddSearchPath: 'c:\users\jim\documents\my games\gas powered games\supreme commander forged alliance\mods\brewlan_rng', mounted as '/mods/brewlan_rng/'
info: DISK: AddSearchPath: 'c:\users\jim\documents\my games\gas powered games\supreme commander forged alliance\mods\brewlan_units', mounted as '/mods/brewlan_units/'
info: DISK: AddSearchPath: 'c:\users\jim\documents\my games\gas powered games\supreme commander forged alliance\mods\common', mounted as '/mods/common/'
info: DISK: AddSearchPath: 'c:\users\jim\documents\my games\gas powered games\supreme commander forged alliance\mods\em', mounted as '/mods/em/'
info: DISK: AddSearchPath: 'c:\users\jim\documents\my games\gas powered games\supreme commander forged alliance\mods\supremeeconomy', mounted as '/mods/supremeeconomy/'
info: DISK: AddSearchPath: 'c:\users\jim\documents\my games\gas powered games\supreme commander forged alliance\mods\t2_t3_storage_faf', mounted as '/mods/t2_t3_storage_faf/'
info: DISK: AddSearchPath: 'c:\users\jim\documents\my games\gas powered games\supreme commander forged alliance\mods\ui-party', mounted as '/mods/ui-party/'
info: DISK: AddSearchPath: 'c:\users\jim\documents\my games\gas powered games\supreme commander forged alliance\mods\v2extractorupgrades', mounted as '/mods/v2extractorupgrades/'
info: DISK: AddSearchPath: 'c:\users\jim\documents\my games\gas powered games\supreme commander forged alliance\maps\brew_reef', mounted as '/maps/brew_reef/'
info: DISK: AddSearchPath: 'c:\users\jim\documents\my games\gas powered games\supreme commander forged alliance\maps\cool_dual_gap_v1.v0001', mounted as '/maps/cool_dual_gap_v1.v0001/'
info: DISK: AddSearchPath: 'c:\users\jim\documents\my games\gas powered games\supreme commander forged alliance\maps\diezle dune 5v5 v2', mounted as '/maps/diezle dune 5v5 v2/'
info: DISK: AddSearchPath: 'c:\users\jim\documents\my games\gas powered games\supreme commander forged alliance\maps\dual_gap_8v816pl_fixed.v0002', mounted as '/maps/dual_gap_8v816pl_fixed.v0002/'
info: DISK: AddSearchPath: 'c:\users\jim\documents\my games\gas powered games\supreme commander forged alliance\maps\dual_gap_forever.v0002', mounted as '/maps/dual_gap_forever.v0002/'
info: DISK: AddSearchPath: 'c:\users\jim\documents\my games\gas powered games\supreme commander forged alliance\maps\perftest', mounted as '/maps/perftest/'
info: DISK: AddSearchPath: 'c:\users\jim\documents\my games\gas powered games\supreme commander forged alliance\maps\sexy_sexy_dual_gap_v1.v0001', mounted as '/maps/sexy_sexy_dual_gap_v1.v0001/'
info: DISK: AddSearchPath: 'c:\users\jim\documents\my games\gas powered games\supreme commander forged alliance\maps\x1mp14_e3corner', mounted as '/maps/x1mp14_e3corner/'
info: DISK: AddSearchPath: 'c:\programdata\faforever\gamedata\effects.nx2', mounted as '/'
info: DISK: AddSearchPath: 'c:\programdata\faforever\gamedata\env.nx2', mounted as '/'
info: DISK: AddSearchPath: 'c:\programdata\faforever\gamedata\etc.nx2', mounted as '/'
info: DISK: AddSearchPath: 'c:\programdata\faforever\gamedata\loc.nx2', mounted as '/'
info: DISK: AddSearchPath: 'c:\programdata\faforever\gamedata\lua.nx2', mounted as '/'
info: DISK: AddSearchPath: 'c:\programdata\faforever\gamedata\meshes.nx2', mounted as '/'
info: DISK: AddSearchPath: 'c:\programdata\faforever\gamedata\modules.nx2', mounted as '/'
info: DISK: AddSearchPath: 'c:\programdata\faforever\gamedata\projectiles.nx2', mounted as '/'
info: DISK: AddSearchPath: 'c:\programdata\faforever\gamedata\schook.nx2', mounted as '/'
info: DISK: AddSearchPath: 'c:\programdata\faforever\gamedata\textures.nx2', mounted as '/'
info: DISK: AddSearchPath: 'c:\programdata\faforever\gamedata\units.nx2', mounted as '/'
info: DISK: AddSearchPath: 'c:\program files (x86)\thq\gas powered games\supreme commander - forged alliance\gamedata\ambience.scd', mounted as '/'
info: DISK: AddSearchPath: 'c:\program files (x86)\thq\gas powered games\supreme commander - forged alliance\gamedata\editor.scd', mounted as '/'
info: DISK: AddSearchPath: 'c:\program files (x86)\thq\gas powered games\supreme commander - forged alliance\gamedata\effects.scd', mounted as '/'
info: DISK: AddSearchPath: 'c:\program files (x86)\thq\gas powered games\supreme commander - forged alliance\gamedata\env.scd', mounted as '/'
info: DISK: AddSearchPath: 'c:\program files (x86)\thq\gas powered games\supreme commander - forged alliance\gamedata\loc_us.scd', mounted as '/'
info: DISK: AddSearchPath: 'c:\program files (x86)\thq\gas powered games\supreme commander - forged alliance\gamedata\lua.scd', mounted as '/'
info: DISK: AddSearchPath: 'c:\program files (x86)\thq\gas powered games\supreme commander - forged alliance\gamedata\meshes.scd', mounted as '/'
info: DISK: AddSearchPath: 'c:\program files (x86)\thq\gas powered games\supreme commander - forged alliance\gamedata\mods.scd', mounted as '/'
info: DISK: AddSearchPath: 'c:\program files (x86)\thq\gas powered games\supreme commander - forged alliance\gamedata\mohodata.scd', mounted as '/'
info: DISK: AddSearchPath: 'c:\program files (x86)\thq\gas powered games\supreme commander - forged alliance\gamedata\moholua.scd', mounted as '/'
info: DISK: AddSearchPath: 'c:\program files (x86)\thq\gas powered games\supreme commander - forged alliance\gamedata\objects.scd', mounted as '/'
info: DISK: AddSearchPath: 'c:\program files (x86)\thq\gas powered games\supreme commander - forged alliance\gamedata\projectiles.scd', mounted as '/'
info: DISK: AddSearchPath: 'c:\program files (x86)\thq\gas powered games\supreme commander - forged alliance\gamedata\props.scd', mounted as '/'
info: DISK: AddSearchPath: 'c:\program files (x86)\thq\gas powered games\supreme commander - forged alliance\gamedata\schook.scd', mounted as '/'
info: DISK: AddSearchPath: 'c:\program files (x86)\thq\gas powered games\supreme commander - forged alliance\gamedata\skins.scd', mounted as '/'
info: DISK: AddSearchPath: 'c:\program files (x86)\thq\gas powered games\supreme commander - forged alliance\gamedata\textures.scd', mounted as '/'
info: DISK: AddSearchPath: 'c:\program files (x86)\thq\gas powered games\supreme commander - forged alliance\gamedata\units.scd', mounted as '/'
info: DISK: AddSearchPath: 'c:\program files (x86)\thq\gas powered games\supreme commander - forged alliance', mounted as '/'
info: Hooked /lua/userInit.lua with /schook/lua/userInit.lua
info: Hooked /lua/globalInit.lua with /schook/lua/globalInit.lua
info: MD5 of global settings: d2a23d6464d3fd77956e7648c43b5077
info: IsStreamingWaveBank("/sounds/aeonselect.xwb") => false
debug: Wavebank prepared: 4a2cbf8
debug: SND: Loaded WaveBank 'aeonselect' at 4a2cbf8
info: IsStreamingWaveBank("/sounds/ambienttest.xwb") => false
debug: Wavebank prepared: 4a2cd28
debug: SND: Loaded WaveBank 'ambienttest' at 4a2cd28
info: IsStreamingWaveBank("/sounds/blackopswb.xwb") => false
debug: Wavebank prepared: 4a2ce58
debug: SND: Loaded WaveBank 'blackopswb' at 4a2ce58
info: IsStreamingWaveBank("/sounds/cybranselect.xwb") => false
debug: Wavebank prepared: 4a2cf88
debug: SND: Loaded WaveBank 'cybranselect' at 4a2cf88
info: IsStreamingWaveBank("/sounds/explosions.xwb") => false
debug: Wavebank prepared: 4a2d0b8
debug: SND: Loaded WaveBank 'explosions' at 4a2d0b8
info: IsStreamingWaveBank("/sounds/explosionsstream.xwb") => true
debug: SND: Loaded WaveBank 'explosionsstream' at 4a2d1e8
info: IsStreamingWaveBank("/sounds/fapwb.xwb") => false
debug: Wavebank prepared: 4a2e758
debug: SND: Loaded WaveBank 'fapwb' at 4a2e758
info: IsStreamingWaveBank("/sounds/fmv_bg.xwb") => true
debug: SND: Loaded WaveBank 'fmv_bg' at 4a2e888
info: IsStreamingWaveBank("/sounds/impacts.xwb") => false
debug: Wavebank prepared: 4a2f9f0
debug: SND: Loaded WaveBank 'impacts' at 4a2f9f0
info: IsStreamingWaveBank("/sounds/interface.xwb") => false
debug: Wavebank prepared: 4a2fb20
debug: SND: Loaded WaveBank 'interface' at 4a2fb20
info: IsStreamingWaveBank("/sounds/music.xwb") => true
debug: SND: Loaded WaveBank 'music' at 4a2fc50
info: IsStreamingWaveBank("/sounds/op_briefing.xwb") => true
debug: SND: Loaded WaveBank 'op_briefing' at 4a30db8
info: IsStreamingWaveBank("/sounds/sc_music.xwb") => true
debug: SND: Loaded WaveBank 'sc_music' at 4a31f20
info: IsStreamingWaveBank("/sounds/seraphimselect.xwb") => false
debug: Wavebank prepared: 4a33088
debug: SND: Loaded WaveBank 'seraphimselect' at 4a33088
info: IsStreamingWaveBank("/sounds/tm_aeonweaponsounds.xwb") => true
debug: SND: Loaded WaveBank 'tm_aeonweaponsounds' at 4a331b8
info: IsStreamingWaveBank("/sounds/tm_aircraftsounds.xwb") => false
debug: Wavebank prepared: 4a34320
debug: SND: Loaded WaveBank 'tm_aircraftsounds' at 4a34320
info: IsStreamingWaveBank("/sounds/tm_cybranweaponsounds.xwb") => false
debug: Wavebank prepared: 4a34450
debug: SND: Loaded WaveBank 'tm_cybranweaponsounds' at 4a34450
info: IsStreamingWaveBank("/sounds/tm_explosionsounds.xwb") => false
debug: Wavebank prepared: 4a34580
debug: SND: Loaded WaveBank 'tm_explosionsounds' at 4a34580
info: IsStreamingWaveBank("/sounds/tm_uefweaponsounds.xwb") => false
debug: Wavebank prepared: 4a346b0
debug: SND: Loaded WaveBank 'tm_uefweaponsounds' at 4a346b0
info: IsStreamingWaveBank("/sounds/uaa.xwb") => false
debug: Wavebank prepared: 4a347e0
debug: SND: Loaded WaveBank 'uaa' at 4a347e0
info: IsStreamingWaveBank("/sounds/uaadestroy.xwb") => false
debug: Wavebank prepared: 4a34910
debug: SND: Loaded WaveBank 'uaadestroy' at 4a34910
info: IsStreamingWaveBank("/sounds/uaaweapon.xwb") => false
debug: Wavebank prepared: 4a34a40
debug: SND: Loaded WaveBank 'uaaweapon' at 4a34a40
info: IsStreamingWaveBank("/sounds/uab.xwb") => false
debug: Wavebank prepared: 4a34b70
debug: SND: Loaded WaveBank 'uab' at 4a34b70
info: IsStreamingWaveBank("/sounds/ual.xwb") => false
debug: Wavebank prepared: 4a358f8
debug: SND: Loaded WaveBank 'ual' at 4a358f8
info: IsStreamingWaveBank("/sounds/ualdestroy.xwb") => false
debug: Wavebank prepared: 4a357c0
debug: SND: Loaded WaveBank 'ualdestroy' at 4a357c0
info: IsStreamingWaveBank("/sounds/ualweapon.xwb") => false
debug: Wavebank prepared: 4a35a30
debug: SND: Loaded WaveBank 'ualweapon' at 4a35a30
info: IsStreamingWaveBank("/sounds/uas.xwb") => false
debug: Wavebank prepared: 4a35b68
debug: SND: Loaded WaveBank 'uas' at 4a35b68
info: IsStreamingWaveBank("/sounds/uasdestroy.xwb") => true
debug: SND: Loaded WaveBank 'uasdestroy' at 4a35ca8
info: IsStreamingWaveBank("/sounds/uasweapon.xwb") => false
debug: Wavebank prepared: 4a351a8
debug: SND: Loaded WaveBank 'uasweapon' at 4a351a8
info: IsStreamingWaveBank("/sounds/uea.xwb") => false
debug: Wavebank prepared: 4a34cc8
debug: SND: Loaded WaveBank 'uea' at 4a34cc8
info: IsStreamingWaveBank("/sounds/ueadestroy.xwb") => false
debug: Wavebank prepared: 4a34e00
debug: SND: Loaded WaveBank 'ueadestroy' at 4a34e00
info: IsStreamingWaveBank("/sounds/ueaweapon.xwb") => false
debug: Wavebank prepared: 4a352e0
debug: SND: Loaded WaveBank 'ueaweapon' at 4a352e0
info: IsStreamingWaveBank("/sounds/ueb.xwb") => false
debug: Wavebank prepared: 4a34f38
debug: SND: Loaded WaveBank 'ueb' at 4a34f38
info: IsStreamingWaveBank("/sounds/uefselect.xwb") => false
debug: Wavebank prepared: 4a35550
debug: SND: Loaded WaveBank 'uefselect' at 4a35550
info: IsStreamingWaveBank("/sounds/uel.xwb") => false
debug: Wavebank prepared: 4a35070
debug: SND: Loaded WaveBank 'uel' at 4a35070
info: IsStreamingWaveBank("/sounds/ueldestroy.xwb") => false
debug: Wavebank prepared: 4a35418
debug: SND: Loaded WaveBank 'ueldestroy' at 4a35418
info: IsStreamingWaveBank("/sounds/uelweapon.xwb") => false
debug: Wavebank prepared: 4a35688
debug: SND: Loaded WaveBank 'uelweapon' at 4a35688
info: IsStreamingWaveBank("/sounds/ues.xwb") => false
debug: Wavebank prepared: 4a37a68
debug: SND: Loaded WaveBank 'ues' at 4a37a68
info: IsStreamingWaveBank("/sounds/uesdestroy.xwb") => true
debug: SND: Loaded WaveBank 'uesdestroy' at 4a38e18
info: IsStreamingWaveBank("/sounds/uesweapon.xwb") => false
debug: Wavebank prepared: 4a37ba0
debug: SND: Loaded WaveBank 'uesweapon' at 4a37ba0
info: IsStreamingWaveBank("/sounds/unitrumble.xwb") => false
debug: Wavebank prepared: 4a381b8
debug: SND: Loaded WaveBank 'unitrumble' at 4a381b8
info: IsStreamingWaveBank("/sounds/unitsglobal.xwb") => false
debug: Wavebank prepared: 4a38cb0
debug: SND: Loaded WaveBank 'unitsglobal' at 4a38cb0
info: IsStreamingWaveBank("/sounds/ura.xwb") => false
debug: Wavebank prepared: 4a377f8
debug: SND: Loaded WaveBank 'ura' at 4a377f8
info: IsStreamingWaveBank("/sounds/uradestroy.xwb") => false
debug: Wavebank prepared: 4a38b78
debug: SND: Loaded WaveBank 'uradestroy' at 4a38b78
info: IsStreamingWaveBank("/sounds/uraweapon.xwb") => false
debug: Wavebank prepared: 4a36e38
debug: SND: Loaded WaveBank 'uraweapon' at 4a36e38
info: IsStreamingWaveBank("/sounds/urb.xwb") => false
debug: Wavebank prepared: 4a387d0
debug: SND: Loaded WaveBank 'urb' at 4a387d0
info: IsStreamingWaveBank("/sounds/url.xwb") => false
debug: Wavebank prepared: 4a36f70
debug: SND: Loaded WaveBank 'url' at 4a36f70
info: IsStreamingWaveBank("/sounds/urldestroy.xwb") => false
debug: Wavebank prepared: 4a382f0
debug: SND: Loaded WaveBank 'urldestroy' at 4a382f0
info: IsStreamingWaveBank("/sounds/urlweapon.xwb") => false
debug: Wavebank prepared: 4a370a8
debug: SND: Loaded WaveBank 'urlweapon' at 4a370a8
info: IsStreamingWaveBank("/sounds/urs.xwb") => false
debug: Wavebank prepared: 4a38908
debug: SND: Loaded WaveBank 'urs' at 4a38908
info: IsStreamingWaveBank("/sounds/ursdestroy.xwb") => true
debug: SND: Loaded WaveBank 'ursdestroy' at 4a39f80
info: IsStreamingWaveBank("/sounds/ursstream.xwb") => true
debug: SND: Loaded WaveBank 'ursstream' at 4a3b0e8
info: IsStreamingWaveBank("/sounds/ursweapon.xwb") => false
debug: Wavebank prepared: 4a38428
debug: SND: Loaded WaveBank 'ursweapon' at 4a38428
info: IsStreamingWaveBank("/sounds/xaa_weapon.xwb") => false
debug: Wavebank prepared: 4a38a40
debug: SND: Loaded WaveBank 'xaa_weapon' at 4a38a40
info: IsStreamingWaveBank("/sounds/xab.xwb") => false
debug: Wavebank prepared: 4a371e0
debug: SND: Loaded WaveBank 'xab' at 4a371e0
info: IsStreamingWaveBank("/sounds/xal.xwb") => false
debug: Wavebank prepared: 4a37318
debug: SND: Loaded WaveBank 'xal' at 4a37318
info: IsStreamingWaveBank("/sounds/xal_weapon.xwb") => false
debug: Wavebank prepared: 4a37cd8
debug: SND: Loaded WaveBank 'xal_weapon' at 4a37cd8
info: IsStreamingWaveBank("/sounds/xas.xwb") => false
debug: Wavebank prepared: 4a37450
debug: SND: Loaded WaveBank 'xas' at 4a37450
info: IsStreamingWaveBank("/sounds/xas_weapons.xwb") => false
debug: Wavebank prepared: 4a38080
debug: SND: Loaded WaveBank 'xas_weapons' at 4a38080
info: IsStreamingWaveBank("/sounds/xea.xwb") => false
debug: Wavebank prepared: 4a37588
debug: SND: Loaded WaveBank 'xea' at 4a37588
info: IsStreamingWaveBank("/sounds/xea_weapons.xwb") => false
debug: Wavebank prepared: 4a376c0
debug: SND: Loaded WaveBank 'xea_weapons' at 4a376c0
info: IsStreamingWaveBank("/sounds/xeb.xwb") => false
debug: Wavebank prepared: 4a38560
debug: SND: Loaded WaveBank 'xeb' at 4a38560
info: IsStreamingWaveBank("/sounds/xel.xwb") => false
debug: Wavebank prepared: 4a37930
debug: SND: Loaded WaveBank 'xel' at 4a37930
info: IsStreamingWaveBank("/sounds/xel_weapons.xwb") => false
debug: Wavebank prepared: 4a38698
debug: SND: Loaded WaveBank 'xel_weapons' at 4a38698
info: IsStreamingWaveBank("/sounds/xes.xwb") => false
debug: Wavebank prepared: 4a37e10
debug: SND: Loaded WaveBank 'xes' at 4a37e10
info: IsStreamingWaveBank("/sounds/xes_destroy.xwb") => true
debug: SND: Loaded WaveBank 'xes_destroy' at 4a3c250
info: IsStreamingWaveBank("/sounds/xes_weapons.xwb") => false
debug: Wavebank prepared: 4a37f48
debug: SND: Loaded WaveBank 'xes_weapons' at 4a37f48
info: IsStreamingWaveBank("/sounds/xra.xwb") => false
debug: Wavebank prepared: 4a3efe8
debug: SND: Loaded WaveBank 'xra' at 4a3efe8
info: IsStreamingWaveBank("/sounds/xra_weapon.xwb") => false
debug: Wavebank prepared: 4a3e760
debug: SND: Loaded WaveBank 'xra_weapon' at 4a3e760
info: IsStreamingWaveBank("/sounds/xrb.xwb") => false
debug: Wavebank prepared: 4a3e148
debug: SND: Loaded WaveBank 'xrb' at 4a3e148
info: IsStreamingWaveBank("/sounds/xrl.xwb") => false
debug: Wavebank prepared: 4a3e280
debug: SND: Loaded WaveBank 'xrl' at 4a3e280
info: IsStreamingWaveBank("/sounds/xrl_stream.xwb") => true
debug: SND: Loaded WaveBank 'xrl_stream' at 4a3f3c0
info: IsStreamingWaveBank("/sounds/xrl_weapon.xwb") => false
debug: Wavebank prepared: 4a3d9f8
debug: SND: Loaded WaveBank 'xrl_weapon' at 4a3d9f8
info: IsStreamingWaveBank("/sounds/xrs.xwb") => false
debug: Wavebank prepared: 4a3ed78
debug: SND: Loaded WaveBank 'xrs' at 4a3ed78
info: IsStreamingWaveBank("/sounds/xrs_weapon.xwb") => false
debug: Wavebank prepared: 4a3eb08
debug: SND: Loaded WaveBank 'xrs_weapon' at 4a3eb08
info: IsStreamingWaveBank("/sounds/xsa.xwb") => false
debug: Wavebank prepared: 4a3d788
debug: SND: Loaded WaveBank 'xsa' at 4a3d788
info: IsStreamingWaveBank("/sounds/xsa_destroy.xwb") => false
debug: Wavebank prepared: 4a3f120
debug: SND: Loaded WaveBank 'xsa_destroy' at 4a3f120
info: IsStreamingWaveBank("/sounds/xsa_weapon.xwb") => false
debug: Wavebank prepared: 4a3d3e0
debug: SND: Loaded WaveBank 'xsa_weapon' at 4a3d3e0
info: IsStreamingWaveBank("/sounds/xsb.xwb") => false
debug: Wavebank prepared: 4a3e3b8
debug: SND: Loaded WaveBank 'xsb' at 4a3e3b8
info: IsStreamingWaveBank("/sounds/xsb_weapon.xwb") => false
debug: Wavebank prepared: 4a3ded8
debug: SND: Loaded WaveBank 'xsb_weapon' at 4a3ded8
info: IsStreamingWaveBank("/sounds/xsl.xwb") => false
debug: Wavebank prepared: 4a3dc68
debug: SND: Loaded WaveBank 'xsl' at 4a3dc68
info: IsStreamingWaveBank("/sounds/xsl_destroy.xwb") => false
debug: Wavebank prepared: 4a3f258
debug: SND: Loaded WaveBank 'xsl_destroy' at 4a3f258
info: IsStreamingWaveBank("/sounds/xsl_weapon.xwb") => false
debug: Wavebank prepared: 4a3d518
debug: SND: Loaded WaveBank 'xsl_weapon' at 4a3d518
info: IsStreamingWaveBank("/sounds/xss.xwb") => false
debug: Wavebank prepared: 4a3e898
debug: SND: Loaded WaveBank 'xss' at 4a3e898
info: IsStreamingWaveBank("/sounds/xss_destroy.xwb") => true
debug: SND: Loaded WaveBank 'xss_destroy' at 4a40528
info: IsStreamingWaveBank("/sounds/xss_weapon.xwb") => false
debug: Wavebank prepared: 4a3d8c0
debug: SND: Loaded WaveBank 'xss_weapon' at 4a3d8c0
debug: SND: Loaded SoundBank 'ambienttest'
debug: SND: Loaded SoundBank 'blackopssb'
debug: SND: Loaded SoundBank 'explosions'
debug: SND: Loaded SoundBank 'fapsb'
debug: SND: Loaded SoundBank 'fmv_bg'
debug: SND: Loaded SoundBank 'impacts'
debug: SND: Loaded SoundBank 'interface'
debug: SND: Loaded SoundBank 'music'
debug: SND: Loaded SoundBank 'op_briefing'
debug: SND: Loaded SoundBank 'sc_music'
debug: SND: Loaded SoundBank 'seraphimselect'
debug: SND: Loaded SoundBank 'tm_aeonweapons'
debug: SND: Loaded SoundBank 'tm_aircrafts'
debug: SND: Loaded SoundBank 'tm_cybranweapons'
debug: SND: Loaded SoundBank 'tm_explosions'
debug: SND: Loaded SoundBank 'tm_uefweapons'
debug: SND: Loaded SoundBank 'uaa'
debug: SND: Loaded SoundBank 'uaadestroy'
debug: SND: Loaded SoundBank 'uaaweapon'
debug: SND: Loaded SoundBank 'uab'
debug: SND: Loaded SoundBank 'ual'
debug: SND: Loaded SoundBank 'ualdestroy'
debug: SND: Loaded SoundBank 'ualweapon'
debug: SND: Loaded SoundBank 'uas'
debug: SND: Loaded SoundBank 'uasdestroy'
debug: SND: Loaded SoundBank 'uasweapon'
debug: SND: Loaded SoundBank 'uea'
debug: SND: Loaded SoundBank 'ueadestroy'
debug: SND: Loaded SoundBank 'ueaweapon'
debug: SND: Loaded SoundBank 'ueb'
debug: SND: Loaded SoundBank 'uel'
debug: SND: Loaded SoundBank 'ueldestroy'
debug: SND: Loaded SoundBank 'uelweapon'
debug: SND: Loaded SoundBank 'ues'
debug: SND: Loaded SoundBank 'uesdestroy'
debug: SND: Loaded SoundBank 'uesweapon'
debug: SND: Loaded SoundBank 'unitrumble'
debug: SND: Loaded SoundBank 'unitsglobal'
debug: SND: Loaded SoundBank 'ura'
debug: SND: Loaded SoundBank 'uradestroy'
debug: SND: Loaded SoundBank 'uraweapon'
debug: SND: Loaded SoundBank 'urb'
debug: SND: Loaded SoundBank 'url'
debug: SND: Loaded SoundBank 'urldestroy'
debug: SND: Loaded SoundBank 'urlweapon'
debug: SND: Loaded SoundBank 'urs'
debug: SND: Loaded SoundBank 'ursdestroy'
debug: SND: Loaded SoundBank 'ursstream'
debug: SND: Loaded SoundBank 'ursweapon'
debug: SND: Loaded SoundBank 'xaa'
debug: SND: Loaded SoundBank 'xaa_weapon'
debug: SND: Loaded SoundBank 'xab'
debug: SND: Loaded SoundBank 'xal'
debug: SND: Loaded SoundBank 'xal_weapon'
debug: SND: Loaded SoundBank 'xas'
debug: SND: Loaded SoundBank 'xas_weapon'
debug: SND: Loaded SoundBank 'xca'
debug: SND: Loaded SoundBank 'xcb'
debug: SND: Loaded SoundBank 'xcl'
debug: SND: Loaded SoundBank 'xcs'
debug: SND: Loaded SoundBank 'xea'
debug: SND: Loaded SoundBank 'xea_weapon'
debug: SND: Loaded SoundBank 'xeb'
debug: SND: Loaded SoundBank 'xel'
debug: SND: Loaded SoundBank 'xel_weapons'
debug: SND: Loaded SoundBank 'xes'
debug: SND: Loaded SoundBank 'xes_destroy'
debug: SND: Loaded SoundBank 'xes_weapons'
debug: SND: Loaded SoundBank 'xra'
debug: SND: Loaded SoundBank 'xra_weapon'
debug: SND: Loaded SoundBank 'xrb'
debug: SND: Loaded SoundBank 'xrl'
debug: SND: Loaded SoundBank 'xrl_destroy'
debug: SND: Loaded SoundBank 'xrl_stream'
debug: SND: Loaded SoundBank 'xrl_weapon'
debug: SND: Loaded SoundBank 'xrs'
debug: SND: Loaded SoundBank 'xrs_weapon'
debug: SND: Loaded SoundBank 'xsa'
debug: SND: Loaded SoundBank 'xsa_destroy'
debug: SND: Loaded SoundBank 'xsa_weapon'
debug: SND: Loaded SoundBank 'xsb'
debug: SND: Loaded SoundBank 'xsb_weapon'
debug: SND: Loaded SoundBank 'xsl'
debug: SND: Loaded SoundBank 'xsl_destroy'
debug: SND: Loaded SoundBank 'xsl_weapon'
debug: SND: Loaded SoundBank 'xss'
debug: SND: Loaded SoundBank 'xss_destroy'
debug: SND: Loaded SoundBank 'xss_weapon'
debug: MEM: -1812901191 bytes SND
info: MD5 of global settings: d2a23d6464d3fd77956e7648c43b5077
info: IsStreamingWaveBank("/sounds/voice/us/ayv_vo.xwb") => false
debug: Wavebank prepared: 4a3e4f0
debug: SND: Loaded WaveBank 'ayv_vo' at 4a3e4f0
info: IsStreamingWaveBank("/sounds/voice/us/briefings.xwb") => true
debug: SND: Loaded WaveBank 'briefings' at 4a6c0d8
info: IsStreamingWaveBank("/sounds/voice/us/hunker.xwb") => true
debug: SND: Loaded WaveBank 'hunker' at 4a6c240
info: IsStreamingWaveBank("/sounds/voice/us/seraphim_language.xwb") => true
debug: SND: Loaded WaveBank 'seraphim_language' at 4a6bf70
info: IsStreamingWaveBank("/sounds/voice/us/x01_vo.xwb") => true
debug: SND: Loaded WaveBank 'x01_vo' at 4a6c3a8
info: IsStreamingWaveBank("/sounds/voice/us/x02_vo.xwb") => true
debug: SND: Loaded WaveBank 'x02_vo' at 4a6c7e0
info: IsStreamingWaveBank("/sounds/voice/us/x03_vo.xwb") => true
debug: SND: Loaded WaveBank 'x03_vo' at 4a6c510
info: IsStreamingWaveBank("/sounds/voice/us/x04_vo.xwb") => true
debug: SND: Loaded WaveBank 'x04_vo' at 4a6c948
info: IsStreamingWaveBank("/sounds/voice/us/x05_vo.xwb") => true
debug: SND: Loaded WaveBank 'x05_vo' at 4a6be08
info: IsStreamingWaveBank("/sounds/voice/us/x06_vo.xwb") => true
debug: SND: Loaded WaveBank 'x06_vo' at 4a6cab0
info: IsStreamingWaveBank("/sounds/voice/us/x1t_vo.xwb") => true
debug: SND: Loaded WaveBank 'x1t_vo' at 4a6c678
info: IsStreamingWaveBank("/sounds/voice/us/x_fmv.xwb") => true
debug: SND: Loaded WaveBank 'x_fmv' at 4a6bca0
info: IsStreamingWaveBank("/sounds/voice/us/xgg.xwb") => true
debug: SND: Loaded WaveBank 'xgg' at 4a824b8
debug: SND: Loaded SoundBank 'ayv_vo'
debug: SND: Loaded SoundBank 'briefings'
debug: SND: Loaded SoundBank 'hunker'
debug: SND: Loaded SoundBank 'x01_vo'
debug: SND: Loaded SoundBank 'x02_vo'
debug: SND: Loaded SoundBank 'x03_vo'
debug: SND: Loaded SoundBank 'x04_vo'
debug: SND: Loaded SoundBank 'x05_vo'
debug: SND: Loaded SoundBank 'x06_vo'
debug: SND: Loaded SoundBank 'x1t_vo'
debug: SND: Loaded SoundBank 'x_fmv'
debug: SND: Loaded SoundBank 'xgg'
debug: MEM: -796091502 bytes SND
info: MD5 of global settings: d2a23d6464d3fd77956e7648c43b5077
debug: MEM: -796091502 bytes SND
debug: Loading module '\000/lua/sim/buffdefinitions.lua\000'
debug: Loading module '\000/lua/sim/adjacencybuffs.lua\000'
debug: Loading module '\000/lua/sim/adjacencybufffunctions.lua\000'
info: Hooked /lua/sim/adjacencybufffunctions.lua with /schook/lua/sim/adjacencybufffunctions.lua
debug: Loading module '\000/lua/sim/cheatbuffs.lua\000'
debug: Loading module '\000/lua/user/prefs.lua\000'
debug: Loading module '\000/lua/options/optionslogic.lua\000'
debug: Loading module '\000/lua/ui/uiutil.lua\000'
debug: Loading module '\000/lua/lazyvar.lua\000'
debug: Loading module '\000/lua/maui/layouthelpers.lua\000'
debug: Loading module '\000/lua/maui/group.lua\000'
debug: Loading module '\000/lua/maui/control.lua\000'
debug: Loading module '\000/lua/maui/text.lua\000'
debug: Loading module '\000/lua/maui/multilinetext.lua\000'
debug: Loading module '\000/lua/maui/button.lua\000'
debug: Loading module '\000/lua/maui/bitmap.lua\000'
debug: Loading module '\000/lua/maui/dragger.lua\000'
debug: Loading module '\000/lua/maui/edit.lua\000'
debug: Loading module '\000/lua/utf.lua\000'
debug: Loading module '\000/lua/ui/controls/checkbox.lua\000'
debug: Loading module '\000/lua/maui/radiobuttons.lua\000'
debug: Loading module '\000/lua/maui/checkbox.lua\000'
debug: Loading module '\000/lua/maui/border.lua\000'
debug: Loading module '\000/lua/maui/scrollbar.lua\000'
debug: Loading module '\000/lua/maui/cursor.lua\000'
debug: Loading module '\000/lua/ui/controls/border.lua\000'
debug: Loading module '\000/lua/ui/controls/ninepatch.lua\000'
debug: Loading module '\000/lua/maui/itemlist.lua\000'
debug: Loading module '\000/lua/skins/layouts.lua\000'
debug: Loading module '\000/lua/ui/controls/popups/popup.lua\000'
debug: Loading module '\000/lua/ui/dialogs/eschandler.lua\000'
debug: Loading module '\000/lua/system/utils.lua\000'
debug: Loading module '\000/lua/ui/controls/popups/inputdialog.lua\000'
debug: Loading module '\000/lua/skins/skins.lua\000'
info: /savereplay
info: REPLAY ID: 6675811
info: adding font file /fonts/arial.ttf
info: adding font file /fonts/arialbd.ttf
info: adding font file /fonts/arialbi.ttf
info: adding font file /fonts/ariali.ttf
info: adding font file /fonts/arialn.ttf
info: adding font file /fonts/arialnb.ttf
info: adding font file /fonts/arialnbi.ttf
info: adding font file /fonts/arialni.ttf
info: adding font file /fonts/ariblk.ttf
info: adding font file /fonts/arlrdbd.ttf
info: adding font file /fonts/butterbe.ttf
info: adding font file /fonts/vdub.ttf
info: adding font file /fonts/wintermu.ttf
info: adding font file /fonts/zeroes_3.ttf
debug: Loading module '\000/lua/keymap/keynames.lua\000'
debug: Loading module '\000/lua/keymap/keymapper.lua\000'
debug: Loading module '\000/lua/keymap/keydescriptions.lua\000'
debug: Loading module '\000/lua/keymap/defaultkeymap.lua\000'
debug: Loading module '\000/lua/keymap/keyactions.lua\000'
debug: Loading module '\000/lua/keymap/debugkeyactions.lua\000'
warning: GAL Exception: file : c:\work\rts\main\code\src\libs\gpggal\DeviceD3D9.cpp(189)
error: unable to create device
warning: GAL Exception: file : c:\work\rts\main\code\src\libs\gpggal\DeviceD3D9.cpp(189)
error: unable to create device

Statistics: Posted by Saxxon — 23 Aug 2017, 07:36


]]>
2017-08-22T07:48:39+02:00 2017-08-22T07:48:39+02:00 /viewtopic.php?t=15002&p=153389#p153389 <![CDATA[Re: Brewlan "Empty map" issue]]>
post your game.log and i will take a look.

Statistics: Posted by Uveso — 22 Aug 2017, 07:48


]]>