Page 1 of 1
AT-RT not spawning [Solved]
Posted: Sat May 12, 2007 9:59 am
by EGG_GUTS
I placed the vehicle spawn and other vehicles spawn fine but the AT-RT won't
It's called rep_walk_oneman_atst but it doesn't work!
why isn't spawning?
thanks
Change the # for your walker type
Posted: Sat May 12, 2007 6:31 pm
by AceMastermind
Did you forget to add how many of this walkertype in the LUA:
AddWalkerType(1, 1) -- 1x2 (1 pair of legs)
Posted: Sat May 12, 2007 8:33 pm
by EGG_GUTS
Where would I put that in my Lua?
Posted: Sat May 12, 2007 9:29 pm
by EGG_GUTS
Thanks it worked.
If I wanted 2 AT-RTs would I add the same line twice?
thanks
Changing the # for walker types in the LUA
Posted: Sat May 12, 2007 11:11 pm
by AceMastermind
EGG_GUTS wrote:If I wanted 2 AT-RTs would I add the same line twice?
You don't have to add that line, it should already be in your LUA, if you were to have another AT-RT (assuming you have another vehicle spawn setup) then you would change the "1" to a "2" like this:
AddWalkerType(1,
2) -- 1x2 (1 pair of legs)
Posted: Sun May 13, 2007 12:43 pm
by EGG_GUTS
and to add an ATAT it would be (2,1) and an ATTE (3,1)? but if you put the line twice it does work.
thanks
Posted: Sun May 13, 2007 1:28 pm
by Jawa_Killer
you also need "setmemorypool walker" to a minimum of the amount of walker you want in your map....if you want 2 then your value is 2....if you want 2100000000123132348 your value is 2100000000123132348 (anyways this won't work xD) but i hope you know what i mean ;D