1 AT-TE instead of 2 AT-TEs [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
DaviidHL
Private Third Class
Posts: 52
Joined: Thu Apr 05, 2018 11:48 am
Projects :: Kashyyyk Droid Invasion
Games I'm Playing :: SWBF2
xbox live or psn: DaviidHL_

1 AT-TE instead of 2 AT-TEs [Solved]

Post by DaviidHL »

I put two vehicle spawns with "rep_walk_atte" and just appears one, why?

(My .lua)

Code: Select all

    --  Level Stats
    --  ClearWalkers()
	    SetMemoryPoolSize ("EntityWalker",-1)
    SetMemoryPoolSize("Commandwalker", 1)
	    AddWalkerType(0, 4) -- special -> droidekas
	AddWalkerType(1, 4) -- 1x2 (1 pair of legs)
	AddWalkerType(2, 4) -- 2x2 (2 pairs of legs)
	AddWalkerType(3, 4) -- 3x2 (3 pairs of legs)
	AddWalkerType(4, 4) -- 3x2 (3 pairs of legs)
	
	
Last edited by DaviidHL on Tue Aug 28, 2018 5:02 pm, edited 1 time in total.
Bob
Brigadier General
Brigadier General
Posts: 633
Joined: Thu May 27, 2010 4:28 am
Location: at home

Re: 1 AT-TE instead of 2 AT-TEs

Post by Bob »

Code: Select all

SetMemoryPoolSize("Commandwalker", 1)
Set that to 2. Commandwalkers are walkers that double as spawnpoint, like the AT-TE.
Post Reply