Map Crashing II

In this forum you will find and post information regarding the modding of Star Wars Battlefront 2. DO NOT POST MOD IDEAS/REQUESTS.

Moderator: Moderators

RevanSithLord
Sith Master
Sith Master
Posts: 2636
Joined: Mon Nov 07, 2005 12:40 am
Projects :: Designated Days + LFC + GT vs SWBFC
Games I'm Playing :: FO3 + FO New Vegas
xbox live or psn: Master Revan
Location: GDSS Philadelphia

RE: Map Crashing II

Post by RevanSithLord »

Oh. Ok. Thanks for the info, man. :)
fat_walrus

Post by fat_walrus »

Code: Select all

Message Severity: 2 
.\Source\EntityBuilding.cpp(695) 
Building missing explosion "com_weap_bldg_gunturret_exp"
I believe this could be the problem, I think one time my map crashed because of something like that
RevanSithLord
Sith Master
Sith Master
Posts: 2636
Joined: Mon Nov 07, 2005 12:40 am
Projects :: Designated Days + LFC + GT vs SWBFC
Games I'm Playing :: FO3 + FO New Vegas
xbox live or psn: Master Revan
Location: GDSS Philadelphia

Post by RevanSithLord »

Oh. Hmm. How can I get rid of that error? Cause all's I wanted was the building. Erg. Well. Hang on a sec.

Wait a sec. There's "Com" in that. Does that mean "Command" ?
Rekubot
Jedi
Jedi
Posts: 1080
Joined: Wed Apr 05, 2006 12:34 pm
Projects :: No Mod project currently.
Games I'm Playing :: Shadow Complex
xbox live or psn: Rekubot
Location: UK

Post by Rekubot »

Nope, it means it would most probably be found in the Common folder. At any rate, that's a Message Severity 2 error, so it won't cause the crash.
RevanSithLord
Sith Master
Sith Master
Posts: 2636
Joined: Mon Nov 07, 2005 12:40 am
Projects :: Designated Days + LFC + GT vs SWBFC
Games I'm Playing :: FO3 + FO New Vegas
xbox live or psn: Master Revan
Location: GDSS Philadelphia

Post by RevanSithLord »

Ok. Well. I'm still trying to pin this down. If all else fails, I might just send my source files to someone, cause I am having a very hard time finding the darn problem.
PieDude797

Post by PieDude797 »

woh dude, i've had a lot of error messages from my new maps, but, this is crazy!
RevanSithLord
Sith Master
Sith Master
Posts: 2636
Joined: Mon Nov 07, 2005 12:40 am
Projects :: Designated Days + LFC + GT vs SWBFC
Games I'm Playing :: FO3 + FO New Vegas
xbox live or psn: Master Revan
Location: GDSS Philadelphia

Post by RevanSithLord »

lol basically I pwn in the error log world. :P
RevanSithLord
Sith Master
Sith Master
Posts: 2636
Joined: Mon Nov 07, 2005 12:40 am
Projects :: Designated Days + LFC + GT vs SWBFC
Games I'm Playing :: FO3 + FO New Vegas
xbox live or psn: Master Revan
Location: GDSS Philadelphia

Post by RevanSithLord »

Ok. So it has been a few months. I'm just updating this thread, but I hope I don't get a warning. If I do, I did know better then to bump an old topic. But still, I'm back to mapping and I need all the help I can get to make my map playable.

If I get a warning oh well. So, ok. I'll do what I can to eliminate these errors, and I'll post my BF2 log frequently. K. Wish me luck.
RevanSithLord
Sith Master
Sith Master
Posts: 2636
Joined: Mon Nov 07, 2005 12:40 am
Projects :: Designated Days + LFC + GT vs SWBFC
Games I'm Playing :: FO3 + FO New Vegas
xbox live or psn: Master Revan
Location: GDSS Philadelphia

Post by RevanSithLord »

Code: Select all

--
-- Copyright (c) 2005 Pandemic Studios, LLC. All rights reserved.
--

ScriptCB_DoFile("setup_teams")
ScriptCB_DoFile("ObjectiveConquest")

	--  Empire Attacking (attacker is always #1)
    local ALL = 2
    local IMP = 1
    --  These variables do not change
    local ATT = 1
    local DEF = 2
    
function ScriptPostLoad()	   
    
    
    --This defines the CPs.  These need to happen first
    cp1 = CommandPost:New{name = "cp1"}
    cp2 = CommandPost:New{name = "cp2"}
    cp3 = CommandPost:New{name = "cp3"}
    cp4 = CommandPost:New{name = "cp4"}
    
    
    
    --This sets up the actual objective.  This needs to happen after cp's are defined
    conquest = ObjectiveConquest:New{teamATT = ATT, teamDEF = DEF, 
                                     textATT = "game.modes.con", 
                                     textDEF = "game.modes.con2",
                                     multiplayerRules = true}
    
    --This adds the CPs to the objective.  This needs to happen after the objective is set up
    conquest:AddCommandPost(cp1)
    conquest:AddCommandPost(cp2)
    conquest:AddCommandPost(cp3)
    conquest:AddCommandPost(cp4)    
    
    conquest:Start()

    EnableSPHeroRules()
    
 end


---------------------------------------------------------------------------
-- FUNCTION:    ScriptInit
-- PURPOSE:     This function is only run once
-- INPUT:
-- OUTPUT:
-- NOTES:       The name, 'ScriptInit' is a chosen convention, and each
--              mission script must contain a version of this function, as
--              it is called from C to start the mission.
---------------------------------------------------------------------------

function ScriptInit()
    
    ReadDataFile("ingame.lvl")



    SetMaxFlyHeight(40)
	SetMaxPlayerFlyHeight(40)


	SetMemoryPoolSize ("ClothData",20)
    SetMemoryPoolSize ("Combo",50)              -- should be ~ 2x number of jedi classes
    SetMemoryPoolSize ("Combo::State",650)      -- should be ~12x #Combo
    SetMemoryPoolSize ("Combo::Transition",650) -- should be a bit bigger than #Combo::State
    SetMemoryPoolSize ("Combo::Condition",650)  -- should be a bit bigger than #Combo::State
    SetMemoryPoolSize ("Combo::Attack",550)     -- should be ~8-12x #Combo
    SetMemoryPoolSize ("Combo::DamageSample",6000)  -- should be ~8-12x #Combo::Attack
    SetMemoryPoolSize ("Combo::Deflect",100)     -- should be ~1x #combo  
    
    
    ReadDataFile("sound\\tat.lvl;tat2gcw")
    ReadDataFile("SIDE\\all.lvl",
                    "all_inf_rifleman",
                    "all_inf_rocketeer",
                    "all_inf_sniper",
                    "all_inf_engineer",
                    "all_inf_officer",
                    "all_inf_wookiee",
                    "all_hero_hansolo_tat")
                    
    ReadDataFile("SIDE\\imp.lvl",
                    "imp_inf_rifleman",
                    "imp_inf_rocketeer",
                    "imp_inf_engineer",
                    "imp_inf_sniper",
                    "imp_inf_officer",
                    "imp_inf_dark_trooper",
                    "imp_hero_bobafett",
                    "imp_fly_destroyer_dome" )

	ReadDataFile("SIDE\\tur.lvl",
						"tur_bldg_tat_barge",	
						"tur_bldg_laser")	
 
	SetupTeams{
		all = {
			team = ALL,
			units = 20,
			reinforcements = 150,
			soldier	= { "all_inf_rifleman",9, 25},
			assault	= { "all_inf_rocketeer",1,4},
			engineer = { "all_inf_engineer",1,4},
			sniper	= { "all_inf_sniper",1,4},
			officer	= { "all_inf_officer",1,4},
			special	= { "all_inf_wookiee",1,4},

		},
		imp = {
			team = IMP,
			units = 20,
			reinforcements = 150,
			soldier	= { "imp_inf_rifleman",9, 25},
			assault	= { "imp_inf_rocketeer",1,4},
			engineer = { "imp_inf_engineer",1,4},
			sniper	= { "imp_inf_sniper",1,4},
			officer	= { "imp_inf_officer",1,4},
			special	= { "imp_inf_dark_trooper",1,4},
		},
	}
    
    SetHeroClass(ALL, "all_hero_hansolo_tat")
    SetHeroClass(IMP, "imp_hero_bobafett")

    --  Level Stats
    ClearWalkers()
    AddWalkerType(0, 0) -- special -> droidekas
    AddWalkerType(1, 0) -- 1x2 (1 pair of legs)
    AddWalkerType(2, 0) -- 2x2 (2 pairs of legs)
    AddWalkerType(3, 0) -- 3x2 (3 pairs of legs)
    
    local weaponCnt = 1024
    SetMemoryPoolSize("Aimer", 75)
    SetMemoryPoolSize("AmmoCounter", weaponCnt)
    SetMemoryPoolSize("BaseHint", 1024)
    SetMemoryPoolSize("EnergyBar", weaponCnt)
	SetMemoryPoolSize("EntityCloth", 32)
	SetMemoryPoolSize("EntityFlyer", 32)
    SetMemoryPoolSize("EntityHover", 32)
    SetMemoryPoolSize("EntityLight", 200)
    SetMemoryPoolSize("EntitySoundStream", 4)
    SetMemoryPoolSize("EntitySoundStatic", 32)
    SetMemoryPoolSize("MountedTurret", 32)
	SetMemoryPoolSize("Navigator", 128)
    SetMemoryPoolSize("Obstacle", 1024)
	SetMemoryPoolSize("PathNode", 1024)
    SetMemoryPoolSize("SoundSpaceRegion", 64)
    SetMemoryPoolSize("TreeGridStack", 1024)
	SetMemoryPoolSize("UnitAgent", 128)
	SetMemoryPoolSize("UnitController", 128)
	SetMemoryPoolSize("Weapon", weaponCnt)

    SetSpawnDelay(10.0, 0.25)
    ReadDataFile("dc:TTB\\TTB.lvl", "TTB_conquest")
    SetDenseEnvironment("false")


    --  Sound Stats
    
    voiceSlow = OpenAudioStream("sound\\global.lvl", "all_unit_vo_slow")
    AudioStreamAppendSegments("sound\\global.lvl", "imp_unit_vo_slow", voiceSlow)
    AudioStreamAppendSegments("sound\\global.lvl", "des_unit_vo_slow", voiceSlow)
    AudioStreamAppendSegments("sound\\global.lvl", "global_vo_slow", voiceSlow)
    
    voiceQuick = OpenAudioStream("sound\\global.lvl",  "all_unit_vo_quick")
    AudioStreamAppendSegments("sound\\global.lvl",  "imp_unit_vo_quick", voiceQuick)    
    
    OpenAudioStream("sound\\global.lvl",  "gcw_music")
    OpenAudioStream("sound\\tat.lvl",  "tat2")
    OpenAudioStream("sound\\tat.lvl",  "tat2")
    -- OpenAudioStream("sound\\global.lvl",  "global_vo_quick")
    -- OpenAudioStream("sound\\global.lvl",  "global_vo_slow")

    SetBleedingVoiceOver(ALL, ALL, "all_off_com_report_us_overwhelmed", 1)
    SetBleedingVoiceOver(ALL, IMP, "all_off_com_report_enemy_losing",   1)
    SetBleedingVoiceOver(IMP, ALL, "imp_off_com_report_enemy_losing",   1)
    SetBleedingVoiceOver(IMP, IMP, "imp_off_com_report_us_overwhelmed", 1)

    SetLowReinforcementsVoiceOver(ALL, ALL, "all_off_defeat_im", .1, 1)
    SetLowReinforcementsVoiceOver(ALL, IMP, "all_off_victory_im", .1, 1)
    SetLowReinforcementsVoiceOver(IMP, IMP, "imp_off_defeat_im", .1, 1)
    SetLowReinforcementsVoiceOver(IMP, ALL, "imp_off_victory_im", .1, 1)

    SetOutOfBoundsVoiceOver(2, "Allleaving")
    SetOutOfBoundsVoiceOver(1, "Impleaving")

    SetAmbientMusic(ALL, 1.0, "all_tat_amb_start",  0,1)
    SetAmbientMusic(ALL, 0.8, "all_tat_amb_middle", 1,1)
    SetAmbientMusic(ALL, 0.2, "all_tat_amb_end",    2,1)
    SetAmbientMusic(IMP, 1.0, "imp_tat_amb_start",  0,1)
    SetAmbientMusic(IMP, 0.8, "imp_tat_amb_middle", 1,1)
    SetAmbientMusic(IMP, 0.2, "imp_tat_amb_end",    2,1)

    SetVictoryMusic(ALL, "all_tat_amb_victory")
    SetDefeatMusic (ALL, "all_tat_amb_defeat")
    SetVictoryMusic(IMP, "imp_tat_amb_victory")
    SetDefeatMusic (IMP, "imp_tat_amb_defeat")

    SetSoundEffect("ScopeDisplayZoomIn",  "binocularzoomin")
    SetSoundEffect("ScopeDisplayZoomOut", "binocularzoomout")
    --SetSoundEffect("WeaponUnableSelect",  "com_weap_inf_weaponchange_null")
    --SetSoundEffect("WeaponModeUnableSelect",  "com_weap_inf_modechange_null")
    SetSoundEffect("SpawnDisplayUnitChange",       "shell_select_unit")
    SetSoundEffect("SpawnDisplayUnitAccept",       "shell_menu_enter")
    SetSoundEffect("SpawnDisplaySpawnPointChange", "shell_select_change")
    SetSoundEffect("SpawnDisplaySpawnPointAccept", "shell_menu_enter")
    SetSoundEffect("SpawnDisplayBack",             "shell_menu_exit")

    --  Camera Stats
    --Tat2 Mos Eisley
	AddCameraShot(0.974338, -0.222180, 0.035172, 0.008020, -82.664650, 23.668301, 43.955681);
	AddCameraShot(0.390197, -0.089729, -0.893040, -0.205362, 23.563562, 12.914885, -101.465561);
	AddCameraShot(0.169759, 0.002225, -0.985398, 0.012916, 126.972809, 4.039628, -22.020613);
	AddCameraShot(0.677453, -0.041535, 0.733016, 0.044942, 97.517807, 4.039628, 36.853477);
	AddCameraShot(0.866029, -0.156506, 0.467299, 0.084449, 7.685640, 7.130688, -10.895234);
end
My .LUA file now.
RevanSithLord
Sith Master
Sith Master
Posts: 2636
Joined: Mon Nov 07, 2005 12:40 am
Projects :: Designated Days + LFC + GT vs SWBFC
Games I'm Playing :: FO3 + FO New Vegas
xbox live or psn: Master Revan
Location: GDSS Philadelphia

RE: Map Crashing II

Post by RevanSithLord »

Code: Select all

Opened logfile BFront2.log  2007-02-04 1129
ingame stream    movies\crawl.mvs
prev =     none     iLastPage =     nil
prev =     texture     iLastPage =     1
prev =     texture     iLastPage =     2
prev =     texture     iLastPage =     3
ifs_legal.Exit

Message Severity: 2
.\Source\GameMovie.cpp(399)
Unable to find open movie segment shell_main

ifs_saveop_DoOps     LoadFileList
ifs_saveop_DoOps     LoadFileList
ifs_saveop_DoOps     LoadProfile
ifs_saveop_DoOps     LoadProfile
ifs_saveop_DoOps     SaveProfile
ifs_saveop_DoOps     SaveProfile
ifs_saveop_DoOps     SaveProfile
ifs_saveop_DoOps     SaveProfile
ifs_saveop_DoOps     SaveProfile
num, Selection =    1    table: 03CA4FAC
+++mission modes changed! ifs_mspc_MapList_layout.SelectedIdx =    1
EraSelection.subst =     c    era_c
EraSelection.subst =     g    era_g
play movie    cor1         200    ,    300         510    x    400

Message Severity: 2
.\Source\GameMovie.cpp(399)
Unable to find open movie segment cor1fly

+++mission modes changed! ifs_mspc_MapList_layout.SelectedIdx =    2
EraSelection.subst =     c    era_c
EraSelection.subst =     g    era_g
+++mission modes changed! ifs_mspc_MapList_layout.SelectedIdx =    3
EraSelection.subst =     c    era_c
EraSelection.subst =     g    era_g
+++mission modes changed! ifs_mspc_MapList_layout.SelectedIdx =    4
EraSelection.subst =     g    era_g
+++mission modes changed! ifs_mspc_MapList_layout.SelectedIdx =    5
EraSelection.subst =     c    era_c
EraSelection.subst =     g    era_g
+++mission modes changed! ifs_mspc_MapList_layout.SelectedIdx =    6
EraSelection.subst =     c    era_c
+++mission modes changed! ifs_mspc_MapList_layout.SelectedIdx =    7
EraSelection.subst =     g    era_g
+++mission modes changed! ifs_mspc_MapList_layout.SelectedIdx =    10
EraSelection.subst =     c    era_c
EraSelection.subst =     g    era_g
+++mission modes changed! ifs_mspc_MapList_layout.SelectedIdx =    11
EraSelection.subst =     c    era_c
EraSelection.subst =     g    era_g
+++mission modes changed! ifs_mspc_MapList_layout.SelectedIdx =    12
EraSelection.subst =     c    era_c
EraSelection.subst =     g    era_g
+++mission modes changed! ifs_mspc_MapList_layout.SelectedIdx =    13
EraSelection.subst =     c    era_c
EraSelection.subst =     g    era_g
+++mission modes changed! ifs_mspc_MapList_layout.SelectedIdx =    14
EraSelection.subst =     c    era_c
EraSelection.subst =     g    era_g
+++mission modes changed! ifs_mspc_MapList_layout.SelectedIdx =    15
EraSelection.subst =     c    era_c
EraSelection.subst =     g    era_g
+++mission modes changed! ifs_mspc_MapList_layout.SelectedIdx =    16
EraSelection.subst =     g    era_g
+++mission modes changed! ifs_mspc_MapList_layout.SelectedIdx =    17
EraSelection.subst =     g    era_g
+++mission modes changed! ifs_mspc_MapList_layout.SelectedIdx =    18
EraSelection.subst =     g    era_g
EraSelection.subst =     g    era_g
num, Selection =    1    table: 03CA4FAC
+++mission modes changed! ifs_mspc_MapList_layout.SelectedIdx =    28
EraSelection.subst =     c    era_c
EraSelection.subst =     g    era_g
play movie    cor1         200    ,    300         510    x    400

Message Severity: 2
.\Source\GameMovie.cpp(399)
Unable to find open movie segment cor1fly

this.CurButton =    check_era1
cur_button =    nil
bEra_CloneWar =     nil     bEra_Galactic =     1
clonewar_visable =     true     galactic_visable =     true
Adding map:     TTBg_con     idx:     1
this.CurButton =    _map_add
cur_button =    nil
this.CurButton =    _opt_global
cur_button =    global
this.CurButton =    _opt_hero
cur_button =    hero
this.CurButton =    _opt_conquest
cur_button =    conquest
this.CurButton =    _opt_playlist
cur_button =    nil
num, Selection =    1    table: 03CA4FAC
play movie    cor1         200    ,    300         510    x    400

Message Severity: 2
.\Source\GameMovie.cpp(399)
Unable to find open movie segment cor1fly

this.CurButton =    Launch
cur_button =    nil

Message Severity: 2
.\Source\HUDElementBitmap.cpp(380)
HUD BitmapElement unable to find texture btn_directional_pad_LR

Message Severity: 2
.\Memory\RedMemoryPool.cpp(317)
Memory pool "ClothData" set item count after being allocated

Message Severity: 2
.\Source\VOHelper.cpp(196)
unknown VO type: 		SpottedVO


Message Severity: 2
.\Source\VOHelper.cpp(196)
unknown VO type: 		NeedRepairVO


Message Severity: 2
.\Source\VOHelper.cpp(196)
unknown VO type: 		NeedPickupVO


Message Severity: 2
.\Source\VOHelper.cpp(196)
unknown VO type: 		NeedBackupVO


Message Severity: 2
.\Source\VOHelper.cpp(196)
unknown VO type: 		DefendPositionVO


Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (han_hero_pc_com_hostile_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(196)
unknown VO type: 		SpottedVO


Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (han_hero_pc_com_mechanic_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(196)
unknown VO type: 		NeedRepairVO


Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (han_hero_pc_com_transport_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(196)
unknown VO type: 		NeedPickupVO


Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (han_hero_pc_com_backup_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(196)
unknown VO type: 		NeedBackupVO


Message Severity: 2
.\Source\VOHelper.cpp(196)
unknown VO type: InVehicle


Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (han_hero_pc_com_defend_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(196)
unknown VO type: 		DefendPositionVO


Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (all1_inf_pc_com_hostile_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (all1_inf_pc_com_bacta_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (all1_inf_pc_com_mechanic_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (all1_inf_pc_com_ammo_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (all1_inf_pc_com_transport_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (all1_inf_pc_com_backup_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (all1_inf_pc_com_clear_area_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (all1_inf_pc_com_defend_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (all1_inf_pc_com_hostile_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (all1_inf_pc_com_bacta_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (all1_inf_pc_com_mechanic_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (all1_inf_pc_com_ammo_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (all1_inf_pc_com_transport_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (all1_inf_pc_com_backup_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (all1_inf_pc_com_clear_area_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (all1_inf_pc_com_defend_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (all1_inf_pc_com_hostile_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (all1_inf_pc_com_bacta_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (all1_inf_pc_com_mechanic_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (all1_inf_pc_com_ammo_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (all1_inf_pc_com_transport_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (all1_inf_pc_com_backup_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (all1_inf_pc_com_clear_area_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (all1_inf_pc_com_defend_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\EntityGeometry.cpp(1058)
Entity "com_weap_veh_guided_rocket_ord" unknown terrain collision "p_front_sphere"

Message Severity: 2
.\Source\EntityGeometry.cpp(1073)
Entity "com_weap_veh_guided_rocket_ord" unknown vehicle collision "p_front_sphere"

Message Severity: 2
.\Source\EntityGeometry.cpp(1065)
Entity "com_weap_veh_guided_rocket_ord" unknown building collision "p_front_sphere"

Message Severity: 2
.\Source\EntityGeometry.cpp(1051)
Entity "com_weap_veh_guided_rocket_ord" unknown targetable collision "CollisionMesh"

Message Severity: 2
.\Source\EntityGeometry.cpp(1058)
Entity "com_weap_award_rocket_launcher_" unknown terrain collision "p_front_sphere"

Message Severity: 2
.\Source\EntityGeometry.cpp(1073)
Entity "com_weap_award_rocket_launcher_" unknown vehicle collision "p_front_sphere"

Message Severity: 2
.\Source\EntityGeometry.cpp(1065)
Entity "com_weap_award_rocket_launcher_" unknown building collision "p_front_sphere"

Message Severity: 2
.\Source\EntityGeometry.cpp(1051)
Entity "com_weap_award_rocket_launcher_" unknown targetable collision "CollisionMesh"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (all1_inf_pc_com_hostile_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (all1_inf_pc_com_bacta_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (all1_inf_pc_com_mechanic_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (all1_inf_pc_com_ammo_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (all1_inf_pc_com_transport_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (all1_inf_pc_com_backup_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (all1_inf_pc_com_clear_area_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (all1_inf_pc_com_defend_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (all3_inf_pc_com_hostile_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (all3_inf_pc_com_bacta_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (all3_inf_pc_com_mechanic_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (all3_inf_pc_com_ammo_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (all3_inf_pc_com_transport_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (all3_inf_pc_com_backup_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (all3_inf_pc_com_clear_area_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (all3_inf_pc_com_defend_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\EntityGeometry.cpp(1065)
Entity "com_weap_inf_remotedroid_ord" unknown building collision "p_buildingsphere"

Message Severity: 2
.\Source\EntityGeometry.cpp(1073)
Entity "com_weap_inf_remotedroid_ord" unknown vehicle collision "p_buildingsphere"

Message Severity: 2
.\Source\EntityGeometry.cpp(1089)
Entity "com_weap_inf_remotedroid_ord" unknown ordnance collision "p_sphere"

Message Severity: 2
.\Source\EntityGeometry.cpp(1081)
Entity "com_weap_inf_remotedroid_ord" unknown soldier collision "p_sphere"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (wok1_inf_pc_com_hostile_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (wok1_inf_pc_com_bacta_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (wok1_inf_pc_com_mechanic_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (wok1_inf_pc_com_ammo_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (wok1_inf_pc_com_transport_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (wok1_inf_pc_com_backup_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (wok1_inf_pc_com_clear_area_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (wok1_inf_pc_com_defend_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(196)
unknown VO type: 		SpottedVO


Message Severity: 2
.\Source\VOHelper.cpp(196)
unknown VO type: 		NeedRepairVO


Message Severity: 2
.\Source\VOHelper.cpp(196)
unknown VO type: 		NeedPickupVO


Message Severity: 2
.\Source\VOHelper.cpp(196)
unknown VO type: 		NeedBackupVO


Message Severity: 2
.\Source\VOHelper.cpp(196)
unknown VO type: 		DefendPositionVO


Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (boba_hero_pc_com_hostile_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(196)
unknown VO type: 		SpottedVO


Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (boba_hero_pc_com_mechanic_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(196)
unknown VO type: 		NeedRepairVO


Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (boba_hero_pc_com_transport_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(196)
unknown VO type: 		NeedPickupVO


Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (boba_hero_pc_com_backup_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(196)
unknown VO type: 		NeedBackupVO


Message Severity: 2
.\Source\VOHelper.cpp(196)
unknown VO type: InVehicle


Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (boba_hero_pc_com_defend_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(196)
unknown VO type: 		DefendPositionVO


Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (imp1_inf_pc_com_hostile_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (imp1_inf_pc_com_bacta_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (imp1_inf_pc_com_mechanic_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (imp1_inf_pc_com_ammo_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (imp1_inf_pc_com_transport_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (imp1_inf_pc_com_backup_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (imp1_inf_pc_com_clear_area_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (imp1_inf_pc_com_defend_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\EntitySoldier.cpp(10471)
Soldier imp_inf_darktrooper has geometry collision

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (imp1_inf_pc_com_hostile_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (imp1_inf_pc_com_bacta_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (imp1_inf_pc_com_mechanic_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (imp1_inf_pc_com_ammo_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (imp1_inf_pc_com_transport_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (imp1_inf_pc_com_backup_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (imp1_inf_pc_com_clear_area_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (imp1_inf_pc_com_defend_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (imp2_inf_pc_com_hostile_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (imp2_inf_pc_com_bacta_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (imp2_inf_pc_com_mechanic_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (imp2_inf_pc_com_ammo_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (imp2_inf_pc_com_transport_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (imp2_inf_pc_com_backup_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (imp2_inf_pc_com_clear_area_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (imp2_inf_pc_com_defend_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (imp1_inf_pc_com_hostile_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (imp1_inf_pc_com_bacta_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (imp1_inf_pc_com_mechanic_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (imp1_inf_pc_com_ammo_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (imp1_inf_pc_com_transport_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (imp1_inf_pc_com_backup_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (imp1_inf_pc_com_clear_area_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (imp1_inf_pc_com_defend_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (imp1_inf_pc_com_hostile_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (imp1_inf_pc_com_bacta_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (imp1_inf_pc_com_mechanic_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (imp1_inf_pc_com_ammo_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (imp1_inf_pc_com_transport_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (imp1_inf_pc_com_backup_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (imp1_inf_pc_com_clear_area_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (imp1_inf_pc_com_defend_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (imp1_inf_pc_com_hostile_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (imp1_inf_pc_com_bacta_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (imp1_inf_pc_com_mechanic_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (imp1_inf_pc_com_ammo_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (imp1_inf_pc_com_transport_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (imp1_inf_pc_com_backup_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (imp1_inf_pc_com_clear_area_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\VOHelper.cpp(183)
VOSound (imp1_inf_pc_com_defend_inVehicle): unknown modifier "InVehicle"

Message Severity: 2
.\Source\EntityBuilding.cpp(695)
Building missing explosion "com_weap_bldg_gunturret_exp"

Message Severity: 2
.\Source\SkyManager.cpp(122)
Skyfile FarSceneRange is in old format

Message Severity: 2
.\Source\AttachedEffects.cpp(143)
AttachEffects: effect 'smoke_billow' not found

Message Severity: 2
.\Source\AttachedEffects.cpp(143)
AttachEffects: effect 'vehicleflame' not found

Message Severity: 2
.\Source\EntityProp.cpp(875)
EntityProp 'geo_bldg_technounion_hull' AttachOdf 'geo_bldg_godray' odf not found

Message Severity: 2
.\Source\AttachedEffects.cpp(143)
AttachEffects: effect 'halo' not found

Message Severity: 3
.\Source\Explosion.cpp(323)
Explosion "myg1_bldg_energy_collector_core" missing effect "myg1_sfx_collector_exp"

Message Severity: 2
.\Source\AttachedEffects.cpp(143)
AttachEffects: effect 'myg1_sfx_collector' not found

Message Severity: 2
.\Source\StringDB.cpp(48)
ID=f3b4a0a1: trying to replace "tat1_bldg_platform_tank" with "tat1_bldg_platform_tank1"

Message Severity: 2
.\Source\StringDB.cpp(48)
ID=6b2078dc: trying to replace "geo_bldg_technounion_hull" with "geo_bldg_technounion_hull1"

Message Severity: 2
.\Source\StringDB.cpp(48)
ID=78b0673e: trying to replace "myg1_bldg_main_bridge" with "myg1_bldg_main_bridge1"

Message Severity: 2
.\Source\StringDB.cpp(48)
ID=2374dd79: trying to replace "myg1_bldg_small_spiral_ruin1" with "myg1_bldg_small_spiral_ruin10"

Message Severity: 2
.\Source\StringDB.cpp(48)
ID=6690187c: trying to replace "myg1_bldg_collector_ribs" with "myg1_bldg_collector_ribs2"

Message Severity: 2
.\Source\StringDB.cpp(48)
ID=001c9e54: trying to replace "myg1_bldg_energy_collector" with "myg1_bldg_energy_collector4"

Message Severity: 2
.\Source\Damageable.cpp(700)
damage effect [myg1_sfx_collector] not found

Message Severity: 2
.\Source\StringDB.cpp(48)
ID=4688440c: trying to replace "myg1_bldg_small_spiral" with "myg1_bldg_small_spiral1"

Message Severity: 2
.\Source\StringDB.cpp(48)
ID=2a7804cd: trying to replace "myg1_bldg_central_rubble_large" with "myg1_bldg_central_rubble_large10"

Message Severity: 2
.\Source\StringDB.cpp(48)
ID=f5dd5c2f: trying to replace "myg1_bldg_central_rubble_large" with "myg1_bldg_central_rubble_large1"

Message Severity: 2
.\Source\StringDB.cpp(48)
ID=fddd68c7: trying to replace "myg1_bldg_central_rubble_large" with "myg1_bldg_central_rubble_large9"

Message Severity: 2
.\Source\Damageable.cpp(700)
damage effect [myg1_sfx_collector] not found

Message Severity: 2
.\Source\StringDB.cpp(48)
ID=3249dd78: trying to replace "myg1_bldg_large_spiral" with "myg1_bldg_large_spiral5"

Message Severity: 2
.\Source\StringDB.cpp(48)
ID=3649e3c4: trying to replace "myg1_bldg_large_spiral" with "myg1_bldg_large_spiral1"

Message Severity: 2
.\Source\StringDB.cpp(48)
ID=3c7a7659: trying to replace "tat2_bldg_crashed_spaceship" with "tat2_bldg_crashed_spaceship3"

Message Severity: 2
.\Source\StringDB.cpp(48)
ID=461eae00: trying to replace "myg1_bldg_broken_spire" with "myg1_bldg_broken_spire1"

Message Severity: 2
.\Source\StringDB.cpp(48)
ID=f7dd5f55: trying to replace "myg1_bldg_central_rubble_large" with "myg1_bldg_central_rubble_large3"

Message Severity: 2
.\Source\StringDB.cpp(48)
ID=67901a0f: trying to replace "myg1_bldg_collector_ribs" with "myg1_bldg_collector_ribs3"

Message Severity: 2
.\Source\Damageable.cpp(700)
damage effect [myg1_sfx_collector] not found

Message Severity: 2
.\Source\StringDB.cpp(48)
ID=28a3b052: trying to replace "myg1_prop_tbuster" with "myg1_prop_tbuster1"

Message Severity: 2
.\Source\StringDB.cpp(48)
ID=f1dd55e3: trying to replace "myg1_bldg_central_rubble_large" with "myg1_bldg_central_rubble_large5"

Message Severity: 2
.\Source\StringDB.cpp(48)
ID=312bd01e: trying to replace "myg1_bldg_spiral_ruin" with "myg1_bldg_spiral_ruin2"

Message Severity: 2
.\Source\StringDB.cpp(48)
ID=302bce8b: trying to replace "myg1_bldg_spiral_ruin" with "myg1_bldg_spiral_ruin1"

Message Severity: 2
.\Source\StringDB.cpp(48)
ID=481eb126: trying to replace "myg1_bldg_broken_spire" with "myg1_bldg_broken_spire3"

Message Severity: 2
.\Source\StringDB.cpp(48)
ID=f2dd5776: trying to replace "myg1_bldg_central_rubble_large" with "myg1_bldg_central_rubble_large6"

Message Severity: 2
.\Source\StringDB.cpp(48)
ID=ff1c9cc1: trying to replace "myg1_bldg_energy_collector" with "myg1_bldg_energy_collector3"

Message Severity: 2
.\Source\Damageable.cpp(700)
damage effect [myg1_sfx_collector] not found

Message Severity: 2
.\Source\Damageable.cpp(700)
damage effect [myg1_sfx_collector] not found

Message Severity: 2
.\Source\StringDB.cpp(48)
ID=24a3aa06: trying to replace "myg1_prop_tbuster" with "myg1_prop_tbuster5"

Message Severity: 2
.\Source\StringDB.cpp(48)
ID=659016e9: trying to replace "myg1_bldg_collector_ribs" with "myg1_bldg_collector_ribs5"

Message Severity: 2
.\Source\StringDB.cpp(48)
ID=1b9ebd7c: trying to replace "myg1_bldg_spiral_platform" with "myg1_bldg_spiral_platform1"

Message Severity: 2
.\Source\StringDB.cpp(48)
ID=3b7a74c6: trying to replace "tat2_bldg_crashed_spaceship" with "tat2_bldg_crashed_spaceship2"

Message Severity: 2
.\Source\Damageable.cpp(700)
damage effect [myg1_sfx_collector] not found

Message Severity: 2
.\Source\Damageable.cpp(700)
damage effect [myg1_sfx_collector] not found

Message Severity: 2
.\Source\Damageable.cpp(700)
damage effect [myg1_sfx_collector] not found

Message Severity: 2
.\Source\StringDB.cpp(48)
ID=3949e87d: trying to replace "myg1_bldg_large_spiral" with "myg1_bldg_large_spiral2"

Message Severity: 2
.\Source\StringDB.cpp(48)
ID=25a3ab99: trying to replace "myg1_prop_tbuster" with "myg1_prop_tbuster4"

Message Severity: 2
.\Source\StringDB.cpp(48)
ID=3849e6ea: trying to replace "myg1_bldg_large_spiral" with "myg1_bldg_large_spiral3"

Message Severity: 2
.\Source\StringDB.cpp(48)
ID=69901d35: trying to replace "myg1_bldg_collector_ribs" with "myg1_bldg_collector_ribs1"

Message Severity: 2
.\Source\Damageable.cpp(700)
damage effect [myg1_sfx_collector] not found

Message Severity: 2
.\Source\StringDB.cpp(48)
ID=3349df0b: trying to replace "myg1_bldg_large_spiral" with "myg1_bldg_large_spiral4"

Message Severity: 2
.\Source\Damageable.cpp(700)
damage effect [myg1_sfx_collector] not found

Message Severity: 2
.\Source\StringDB.cpp(48)
ID=f3dd5909: trying to replace "myg1_bldg_central_rubble_large" with "myg1_bldg_central_rubble_large7"

Message Severity: 2
.\Source\StringDB.cpp(48)
ID=27a3aebf: trying to replace "myg1_prop_tbuster" with "myg1_prop_tbuster2"

Message Severity: 2
.\Source\StringDB.cpp(48)
ID=491eb2b9: trying to replace "myg1_bldg_broken_spire" with "myg1_bldg_broken_spire2"

Message Severity: 2
.\Source\StringDB.cpp(48)
ID=3a7a7333: trying to replace "tat2_bldg_crashed_spaceship" with "tat2_bldg_crashed_spaceship1"

Message Severity: 2
.\Source\StringDB.cpp(48)
ID=70e84ca7: trying to replace "myg1_bldg_pan_walkway" with "myg1_bldg_pan_walkway1"

Message Severity: 2
.\Source\Damageable.cpp(700)
damage effect [myg1_sfx_collector] not found

Message Severity: 2
.\Source\StringDB.cpp(48)
ID=64901556: trying to replace "myg1_bldg_collector_ribs" with "myg1_bldg_collector_ribs4"

Message Severity: 2
.\Source\StringDB.cpp(48)
ID=fe1c9b2e: trying to replace "myg1_bldg_energy_collector" with "myg1_bldg_energy_collector2"

Message Severity: 2
.\Source\StringDB.cpp(48)
ID=23a3a873: trying to replace "myg1_prop_tbuster" with "myg1_prop_tbuster6"

Message Severity: 2
.\Source\StringDB.cpp(48)
ID=38dcbb41: trying to replace "myg1_bldg_med_spiral" with "myg1_bldg_med_spiral1"

Message Severity: 2
.\Source\StringDB.cpp(48)
ID=fd1c999b: trying to replace "myg1_bldg_energy_collector" with "myg1_bldg_energy_collector1"

Message Severity: 2
.\Source\StringDB.cpp(48)
ID=fcdd6734: trying to replace "myg1_bldg_central_rubble_large" with "myg1_bldg_central_rubble_large8"

Message Severity: 2
.\Source\StringDB.cpp(48)
ID=26a3ad2c: trying to replace "myg1_prop_tbuster" with "myg1_prop_tbuster3"

Message Severity: 2
.\Source\Damageable.cpp(700)
damage effect [myg1_sfx_collector] not found

Message Severity: 2
.\Source\StringDB.cpp(48)
ID=f0dd5450: trying to replace "myg1_bldg_central_rubble_large" with "myg1_bldg_central_rubble_large4"

Message Severity: 2
.\Source\StringDB.cpp(48)
ID=f6dd5dc2: trying to replace "myg1_bldg_central_rubble_large" with "myg1_bldg_central_rubble_large2"

Message Severity: 3
.\Source\CommandPost.cpp(279)
Exceeded 16 command posts!
My BFRONT2 log now.
Penguin
Jedi Admin
Jedi Admin
Posts: 2541
Joined: Sun Mar 05, 2006 12:00 am
Location: Australia

RE: Map Crashing II

Post by Penguin »

Stuff that should be fixed

Code: Select all

Message Severity: 2
.\Source\AttachedEffects.cpp(143)
AttachEffects: effect 'smoke_billow' not found

Message Severity: 2
.\Source\AttachedEffects.cpp(143)
AttachEffects: effect 'vehicleflame' not found

Message Severity: 2
.\Source\EntityProp.cpp(875)
EntityProp 'geo_bldg_technounion_hull' AttachOdf 'geo_bldg_godray' odf not found


Message Severity: 2
.\Source\EntityBuilding.cpp(695)
Building missing explosion "com_weap_bldg_gunturret_exp" 

Message Severity: 2
.\Source\AttachedEffects.cpp(143)
AttachEffects: effect 'halo' not found

Message Severity: 3
.\Source\Explosion.cpp(323)
Explosion "myg1_bldg_energy_collector_core" missing effect "myg1_sfx_collector_exp"

Message Severity: 2
.\Source\AttachedEffects.cpp(143)
AttachEffects: effect 'myg1_sfx_collector' not found 

Crashing problem

Code: Select all

Message Severity: 3
.\Source\CommandPost.cpp(279)
Exceeded 16 command posts! 
How many CPs and Mobile CPs do you have?[/b]
RevanSithLord
Sith Master
Sith Master
Posts: 2636
Joined: Mon Nov 07, 2005 12:40 am
Projects :: Designated Days + LFC + GT vs SWBFC
Games I'm Playing :: FO3 + FO New Vegas
xbox live or psn: Master Revan
Location: GDSS Philadelphia

RE: Map Crashing II

Post by RevanSithLord »

Lemme check to make sure. BRB.


GOOD NEWS!!!!!!!!!!!

It didn't crash, it went in. Sad thing though, on the map there are tons of CP's (ones I didn't even fricken place), and I can't spawn at all. What do I do now?


Edit-2: Oh, and the buildings are bluish tint lol. Cause of my blue lighting. But if I could somehow get the map to be all bluish-Talay night like, I would be happy.
RevanSithLord
Sith Master
Sith Master
Posts: 2636
Joined: Mon Nov 07, 2005 12:40 am
Projects :: Designated Days + LFC + GT vs SWBFC
Games I'm Playing :: FO3 + FO New Vegas
xbox live or psn: Master Revan
Location: GDSS Philadelphia

RE: Map Crashing II

Post by RevanSithLord »

In other part from my good news, I checked the layers, got rid of any excess CP and deleted floating objects.

Now to give one CP to the ATK and DEF teams.
RevanSithLord
Sith Master
Sith Master
Posts: 2636
Joined: Mon Nov 07, 2005 12:40 am
Projects :: Designated Days + LFC + GT vs SWBFC
Games I'm Playing :: FO3 + FO New Vegas
xbox live or psn: Master Revan
Location: GDSS Philadelphia

RE: Map Crashing II

Post by RevanSithLord »

Well. I got them assigned. But now I gotta make them selectable lol. :?
RevanSithLord
Sith Master
Sith Master
Posts: 2636
Joined: Mon Nov 07, 2005 12:40 am
Projects :: Designated Days + LFC + GT vs SWBFC
Games I'm Playing :: FO3 + FO New Vegas
xbox live or psn: Master Revan
Location: GDSS Philadelphia

RE: Map Crashing II

Post by RevanSithLord »

lol Can someone point me to the guide which has a tutorial on how to get my cp's selectable? Thanks.

Then after that, I'll be sure and get some screens of my map ingame. Also, I'd be thankful if someone can point me to where I can edit the lasers in Particle editor so I can get the GCW lasers for both sides to actually look that of the Original Trilogy lasers... or I can make em look similar but not the same as Majin's. I'd also be thankful if someone could help me with skins for my Talay map. This map has been taking a while, I know. But hopefully soon I'll tackle this and continue on with my Dark Forces-like series. I'd also need people to make weapons models for me- EG- The heavy cannon's phase two's used in FoC, and then an Imperial Repeater for another Phase-2 class. And for phase 3, I dunno, perhaps someone could help me with that one.

Ok. Basically I'm asking if someone wants to join my so-called 'Mod team' :P I plan on making this as Dark Forces accurate as possible, but also really accurate along the GCW timeline. Who knows, I might even go beyond that. :D

By the way- I have the track: "After The Massacre" from Dark Forces. I think that'd fit unless I put in the track "Crix Madine's Fate" Or something. If someone wants the entire soundtrack I downloaded from the Dark Forces mod website, I can send them it (Yes it's legal lol) And you guys can decide on a track that's best suited for the map.


Edit- WTF! I just added water to my map where the water was suppose to be in Talay's Canals. The water looks fine, but it is positioned wrong. It's like... above ground in mid-air! And btw, I still can't spawn. :/

Edit- Woops! Nevermind. Waters better now. I forgot to do -5 on the hieght. It looks much better now and it goes under the bridge! :D
RevanSithLord
Sith Master
Sith Master
Posts: 2636
Joined: Mon Nov 07, 2005 12:40 am
Projects :: Designated Days + LFC + GT vs SWBFC
Games I'm Playing :: FO3 + FO New Vegas
xbox live or psn: Master Revan
Location: GDSS Philadelphia

RE: Map Crashing II

Post by RevanSithLord »

Sorry for double post, but I gotta go to school. I'll be back later and if anyone's interested they can join up with me to make a mod team. :D
RevanSithLord
Sith Master
Sith Master
Posts: 2636
Joined: Mon Nov 07, 2005 12:40 am
Projects :: Designated Days + LFC + GT vs SWBFC
Games I'm Playing :: FO3 + FO New Vegas
xbox live or psn: Master Revan
Location: GDSS Philadelphia

RE: Map Crashing II

Post by RevanSithLord »

Question:

What do I edit so my guys and I can spawn at the cp's I assigned?

Er. I referenced in the .lua too. Hold on, I think I might've done something. Lemme check to make sure.
RC-1290

RE: Map Crashing II

Post by RC-1290 »

I think you just set the record for double posting :|, WOW.
RevanSithLord
Sith Master
Sith Master
Posts: 2636
Joined: Mon Nov 07, 2005 12:40 am
Projects :: Designated Days + LFC + GT vs SWBFC
Games I'm Playing :: FO3 + FO New Vegas
xbox live or psn: Master Revan
Location: GDSS Philadelphia

RE: Map Crashing II

Post by RevanSithLord »

Yea. Well, this is all updating my problems with my map. And besides, I haven't posted here until today. So. Yea. :?

Besides, I'd much rather keep my problems in one thread rather than spamming the boards with random questions.

I want all the information/help in this one thread only unless they tell me what to do over msn or in my WIP thread.

Btw, my map is coming along great. Only if I can just spawn, it'd make things easier. :/
RC-1290

RE: Map Crashing II

Post by RC-1290 »

Good point, spamming just your own topic, but I just wondered why you made 6 posts in stead of editing the previous post,lol.
---
Did you make spawn paths? Or maybe there is a corrupt object. There's loads of possible causes.
Post Reply