Trying to munge a shipped jed side [Solved]

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
naruto2693
Recruit Womprat Killer
Posts: 11
Joined: Fri Nov 20, 2009 5:57 pm

Trying to munge a shipped jed side [Solved]

Post by naruto2693 »

I tried creating a jedi side file from the shipped jedi assets and it just crashed on me, I copied the entire jed side folder from assets and tried to munge it with my test map, I didn't change anything. What's going on here?

Code: Select all

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

Message Severity: 2
.\Source\Combo.cpp(2475)
Combo[ba944832]::State[JUMPATTACK_FALL2]::InputLock unknown input '!Strafe'

Message Severity: 3
.\Source\Weapon.cpp(1604)
Weapon base class "com_weap_inf_lightsaber" not found
THEWULFMAN
Space Ranger
Posts: 5557
Joined: Tue Aug 17, 2010 3:30 pm
Projects :: Evolved 2
Location: Columbus, Ohio
Contact:

Re: Trying to munge a shipped jed side, NOOB WARNING

Post by THEWULFMAN »

naruto2693 wrote:

Code: Select all

Message Severity: 3
.\Source\Weapon.cpp(1604)
Weapon base class "com_weap_inf_lightsaber" not found

Remember when side editing to always copy over the common side folder located in Assets/Sides to your Data_???/Sides folder.
User avatar
Fiodis
Master of the Force
Master of the Force
Posts: 4145
Joined: Wed Nov 12, 2008 9:27 pm
Projects :: Rannoch + Tientia + Tools Programming

Re: Trying to munge a shipped jed side, NOOB WARNING

Post by Fiodis »

Additionally, you'll want to increase certain memory pools in your lua if you're going to have melee units like Jedi. Add these lines to your lua, or if they're already there then increase their numbers:

Code: Select all

    SetMemoryPoolSize ("ClothData",20)
    SetMemoryPoolSize ("Combo",30)              
    SetMemoryPoolSize ("Combo::State",500)      
    SetMemoryPoolSize ("Combo::Transition",500) 
    SetMemoryPoolSize ("Combo::Condition",500)  
    SetMemoryPoolSize ("Combo::Attack",400)     
    SetMemoryPoolSize ("Combo::DamageSample",4000)  
    SetMemoryPoolSize ("Combo::Deflect",88)    
naruto2693
Recruit Womprat Killer
Posts: 11
Joined: Fri Nov 20, 2009 5:57 pm

Re: Trying to munge a shipped jed side, NOOB WARNING

Post by naruto2693 »

Thanks guys, it works
Post Reply