Im working on a map and I cant get my ATST,ATAT, ATRT, or ATAT
to spawn?What are the right things for it ?
Im using
ATST - imp_walk_atst
ATRT - rep_walk_atrt
ATTE - rep_walk_atte
ATAT - imp_walk_atat
Please Help
ATAT and ATTE
Moderator: Moderators
- [SBF]ATATFIGHTR
- Chief Warrant Officer

- Posts: 338
- Joined: Sun Mar 12, 2006 12:22 am
- Projects :: No Mod project currently.
- xbox live or psn: No gamertag set
- Location: The US, in the state of UTAH
-
xwingguy
RE: ATAT and ATTE
ClearWalkers wipes out any allocations that may have been done automatically for walkers. You’ll need to have this line in, and uncommented if you want to have walkers in your level
-- ClearWalkers()
These next lines will add walkers to your level. The first number inside the parenthesis specifies how many leg pairs the walker type has. Droidekas are set up as a special case, with 0 leg pairs. So as you can see below, we have AddWalkerType(0,4) this specifies that we will have 4 walkers with 0 leg pairs (droidekas). 1 leg pair would specify a walker with one pair of legs, an ATST for example, or a one-man ATST from the clone wars era. So for 2 ATSTs, we would have a line that says; AddWalkerType(1, 2)
2 leg pairs would be a unit like the CIS spider walker, or an ATAT, and 3 leg pairs would be the 6-legged walker from the clone wars era.
AddWalkerType(0, 4) -- special -> droidekas
AddWalkerType(1, 0) -- 1x2 (1 pair of legs)
AddWalkerType(2, 0) -- 2x2 (2 pairs of legs)
AddWalkerType(3, 0) -- 3x2 (3 pairs of legs)
-- ClearWalkers()
These next lines will add walkers to your level. The first number inside the parenthesis specifies how many leg pairs the walker type has. Droidekas are set up as a special case, with 0 leg pairs. So as you can see below, we have AddWalkerType(0,4) this specifies that we will have 4 walkers with 0 leg pairs (droidekas). 1 leg pair would specify a walker with one pair of legs, an ATST for example, or a one-man ATST from the clone wars era. So for 2 ATSTs, we would have a line that says; AddWalkerType(1, 2)
2 leg pairs would be a unit like the CIS spider walker, or an ATAT, and 3 leg pairs would be the 6-legged walker from the clone wars era.
AddWalkerType(0, 4) -- special -> droidekas
AddWalkerType(1, 0) -- 1x2 (1 pair of legs)
AddWalkerType(2, 0) -- 2x2 (2 pairs of legs)
AddWalkerType(3, 0) -- 3x2 (3 pairs of legs)
-
ARC_Trooper
RE: ATAT and ATTE
Thanks, Sir!
Now it makes more sense
Now it makes more sense
-
Squirrel7Hunter
- [SBF]ATATFIGHTR
- Chief Warrant Officer

- Posts: 338
- Joined: Sun Mar 12, 2006 12:22 am
- Projects :: No Mod project currently.
- xbox live or psn: No gamertag set
- Location: The US, in the state of UTAH
-
xwingguy
