Page 1 of 1

3 AT-TEs

Posted: Tue Sep 20, 2011 5:40 am
by jedimoose32
I have 3 AT-TE's in my map. Two of them work fine, but no AI spawn at the third one, and no one ever pilots it or targets it or anything.

LUA:

Code: Select all

AddWalkerType(0, 4) -- special -> droidekas 4 droidekas, definitely going to increase
    AddWalkerType(1, 0) -- 1x2 (1 pair of legs)
    AddWalkerType(2, 3) -- 2x2 (2 pairs of legs) 3 atrt's
    AddWalkerType(3, 3) -- 3x2 (3 pairs of legs) 3 atte's, was considering revision
    local weaponCnt = 1024
    SetMemoryPoolSize("Aimer", 75)
    SetMemoryPoolSize("AmmoCounter", weaponCnt)
    SetMemoryPoolSize("BaseHint", 1024)
    SetMemoryPoolSize("EnergyBar", weaponCnt)
	SetMemoryPoolSize("EntityCloth", 32)
	SetMemoryPoolSize("EntityFlyer", 32)
	SetMemoryPoolSize("CommandWalker", 3) --increased in relation to AddWalkerType incrementation
The walker's vehicle spawner in Zeroeditor is set up exactly the same as the other two. What am I doing wrong?

Re: 3 AT-TEs

Posted: Tue Sep 20, 2011 12:10 pm
by DarthD.U.C.K.
how many commandposts do you have?

Re: 3 AT-TEs

Posted: Tue Sep 20, 2011 3:03 pm
by RED51
Wouldn't too may CPs and mobile CPs cause a crash?

Re: 3 AT-TEs

Posted: Tue Sep 20, 2011 10:52 pm
by jedimoose32
DarthD.U.C.K. wrote:how many commandposts do you have?
I have 10 normal command posts and the 2 working AT-TEs. I ruled too many command posts out already because I read the "BF2 Limitations" FAQ which says 16 is the limit.