map crash

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

Post Reply
SwaaT
Private Recruit
Posts: 29
Joined: Fri Oct 02, 2015 10:19 pm
Projects :: No Mod project currently.
xbox live or psn: No gamertag set

map crash

Post by SwaaT »

I've been making some side changes to my tantative iv map. I just added multiple heroes into the map and now it keep crashes after a minute or so, there isn't an error message either, anyone know whats wrong?
thelegend
Sith
Sith
Posts: 1433
Joined: Thu Jan 23, 2014 6:01 am
Projects :: Star Wars - Battlefront III Legacy
Games I'm Playing :: Swbf GTA CoD LoL KH
xbox live or psn: El_Fabricio#
Location: Right behind you :)

Re: map crash

Post by thelegend »

SwaaT wrote:I just added multiple heroes into the map
Do you use the stock Tantive IV .lua or your own? Make sure you added the heroes properly and add these lines above your ReadDataFile's (Sides/Sound..):

Code: Select all

	
    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  
Post Reply