How do you add AT-TEs?
Moderator: Moderators
-
Recon Trooper
- Command Sergeant Major

- Posts: 285
- Joined: Fri Sep 11, 2009 5:36 am
- Projects :: No Mod project currently.
- xbox live or psn: No gamertag set
- Location: Muhamid Ant Farm ???
- Contact:
How do you add AT-TEs?
I tryed adding a at-te by the normal way and changed the lua to add 3 legs walker type but it never turns up?
- B.I.G_Cookie
- High General

- Posts: 839
- Joined: Sun Feb 22, 2009 4:28 pm
- Location: Frankfurt, Germany
Re: How do you add AT-TEs?
the atte is a commando vehicle.
you also have to write it into your memorypool
you also have to write it into your memorypool
Hidden/Spoiler:
-
Darth_Spiderpig
- Sith Master

- Posts: 2631
- Joined: Fri Mar 27, 2009 10:23 am
- Projects :: Something cool...
- xbox live or psn: Has no xbox....Yup
- Location: Does whatever a Spiderpig does
- Contact:
Re: How do you add AT-TEs?
Not to forget the entity walker part:
Hidden/Spoiler:
-
theultimat
- Lieutenant General

- Posts: 679
- Joined: Sun Apr 13, 2008 1:39 pm
- Location: UK
Re: How do you add AT-TEs?
Things you need to do (summary of above posts
)
1) Add the ATTE in the ReadDataFile part of your LUA.
2) Add the walker type of an ATTE. The number after the 3 should be the number of ATTEs in the map.
3) Set the Memory Pool. This should go under the line
The code that goes under that is as follows. Again, the 1 is the number of ATTEs you want in the map.
That and all the normal vehicle set up leaves you with a fully functioning ATTE. Enjoy. 
1) Add the ATTE in the ReadDataFile part of your LUA.
Code: Select all
ReadDataFile("SIDE\\rep.lvl",
"rep_walk_atte") Code: Select all
AddWalkerType(3, 1) -- 3x2 (3 pairs of legs)Code: Select all
SetMemoryPoolSize("EntityFlyer", 32)Code: Select all
SetMemoryPoolSize("CommandWalker", 1)