hello again. im having a big problem with the death star crates. Iv'e been editing a shiped geonosis map and loaded in the Death Star crates. when i go throught steam to load up my map it freezes for over 2 minutes. Ive never got aroud to taking away the galactic civil war so when i put in the death star crates on that blank map it works. so it has to eather be something with the clone war era or the geonosis map because it works on my blank galactic civil war map.
sorry for the confusion. If you would like to understand my problem better follow the turtorial here but with the shiped geonosis map ONLY on the clone wars. add in the death stars odf's msh's effects and munged files (like you normaly would). add the death star crate stack 3, then play the map.
This seems like it isn't really a problem with the crates themselves, could you post 1). your error log, and 2). the lua file for your map. these would really help us understand/solve your problem.
EDIT: Also try a clean and munge, this doesn't always work, but you never know.
--
-- Copyright (c) 2005 Pandemic Studios, LLC. All rights reserved.
--
-- load the gametype script
ScriptCB_DoFile("ObjectiveConquest")
ScriptCB_DoFile("setup_teams")
---------------------------------------------------------------------------
-- 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.
---------------------------------------------------------------------------
--This sets up the actual objective. This needs to happen after cp's are defined
conquest = ObjectiveConquest:New{teamATT = ATT, teamDEF = DEF, text = "level.geo1.objectives.conquest", 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:AddCommandPost(cp5)
conquest:AddCommandPost(cp6)
conquest:AddCommandPost(cp7)
conquest:AddCommandPost(cp8)
conquest:AddCommandPost(cp9)
conquest:AddCommandPost(cp10)
conquest:AddCommandPost(cp11)
end
function ScriptInit()
StealArtistHeap(800*1024)
-- Designers, these two lines *MUST* be first.
SetPS2ModelMemory(3500000)
ReadDataFile("ingame.lvl")
-- REP Attacking (attacker is always #1)
local REP = 1
local CIS = 2
-- These variables do not change
local ATT = 1
local DEF = 2
SetMemoryPoolSize ("Combo",64) -- should be ~ 2x number of jedi classes
SetMemoryPoolSize ("Combo::State",256) -- should be ~12x #Combo
SetMemoryPoolSize ("Combo::Transition",256) -- should be a bit bigger than #Combo::State
SetMemoryPoolSize ("Combo::Condition",256) -- should be a bit bigger than #Combo::State
SetMemoryPoolSize ("Combo::Attack",150) -- should be ~8-12x #Combo
SetMemoryPoolSize ("Combo::DamageSample",4086) -- should be ~8-12x #Combo::Attack
SetMemoryPoolSize ("Combo::Deflect",64) -- should be ~1x #combo
SetMemoryPoolSize("Music", 40)
function MoveEntityToNode(entIn,pathIn,nodeIn)
if not entIn then
print("Warning!: Entity not specified for move")
return false
elseif not pathIn then
print("Warning!: Path not specified for Entity " .. entIn .. " move")
return false
end
local node
if nodeIn then
node = nodeIn
else
node = 0
end
local locDest = GetPathPoint(pathIn,node)
local charUnit = GetCharacterUnit(entIn)
if charUnit then
SetEntityMatrix(charUnit,locDest)
return true
end
return false
end
ill just post my error log file as a download its to many characters
I have only recently figured out how to generate an error log. Ive always ran my game through steam and it works that way but not with the no dvd thing that runs the debug thing, so it might be backed up with errors
Does it freeze on the last loading dot? Sounds like you might have too many objects in your map. Try removing one crate object at a time until your map no longer freezes, just to make sure it is indeed an object count problem.
well i must be going over some kind of count because i removed a lot of important objects and the creates worked, but when i added in more objects i wanted it would stop working so i had to delete more. i guess this could be an object count problem, but is the object count how many objects you have or the complexity if the objects you have. also i dont think its poly limit because my map freezes rather than crashing and going back to the desktop.
if my problem is an object count(complexity) isuee is there ANY posible way to get around this.
In my experience, the complexity of the object doesn't seem to matter. As for your problem here, the only way around it is to merge objects together in a modeling problem such as XSI, and then place them in ZE as one object.
Portals and sectors have to do with helping with the rendering of objects to prevent them from flickering/disappearing/reverting to their low resolution forms.
Lorul1 wrote:also i checked my wrl file and i dont think im over the object limit
Lorul1 wrote:well i must be going over some kind of count because i removed a lot of important objects and the creates worked, but when i added in more objects i wanted it would stop working so i had to delete more.
I'm sorry, but did you not just describe a scenario involving you going over the object limit? You were over the limit; you then removed objects so that it put you under the limit, and then you added more objects, which consequently put you over the limit again. This was why I suggested earlier to remove one object at a time until the freezing is no longer present so that you can be certain where that limit is.