how I create an aircraft carrier(enterpreise) in Omaha beach
how I create an aircraft carrier(enterpreise) in Omaha beach
It is possible to place an aircraft carrier (enterpresie) OMAHA BEACH map? Co-op and Conquest, but SSM, not CSM.
- Vilespring
- Posts: 740
- Joined: Sat Nov 24, 2012 5:47 am
- Location: Somewere in the United States
Re: how I create an aircraft carrier(enterpreise) in Omaha b
I know it's easy, but I have no idea how to do it...
I see a problem with flying planes on such a tiny map.
I see a problem with flying planes on such a tiny map.
A picture is worth a thousand words, but takes up three thousand times the memory.
Area 51: http://battlefieldarea51mod.weebly.com/

"I didn't steal your pizza"
Area 51: http://battlefieldarea51mod.weebly.com/

"I didn't steal your pizza"
Re: how I create an aircraft carrier(enterpreise) in Omaha b
Tutorial: Removing The Out Of Bounds Areas On A Map....I suppose that this is the solution for the space, but do not see how in the case of aircraft carriers.
Re: how I create an aircraft carrier(enterpreise) in Omaha b
just go into the folder of the game mode and look in ObjectSpawnTemplates.con for a unused spawner, then edit it to spawn the carrier. then you place the carrier in the ObjectSpawns.con
for example
if you dont have any unused spawners you can add vehicles to a spawner like this
for example
Code: Select all
ObjectTemplate.create ObjectSpawner DiveBomberSpawner
rem ObjectTemplate.setObjectTemplate 2 mustang
ObjectTemplate.setObjectTemplate 2 enterprise
ObjectTemplate.setObjectTemplate 1 stuka
ObjectTemplate.SpawnDelay 10
ObjectTemplate.SpawnDelayAtStart 0
ObjectTemplate.TimeToLive 5
ObjectTemplate.Distance 30
ObjectTemplate.DamageWhenLost 20
ObjectTemplate.teamOnVehicle 1
Code: Select all
Object.create DiveBomberSpawner
Object.absolutePosition 1988/24.4/2150
Object.rotation -90/0/0
Object.setteam 2
Code: Select all
ObjectTemplate.setObjectTemplate 4 mustang
ObjectTemplate.setObjectTemplate 3 stuka
ObjectTemplate.setObjectTemplate 2 enterprise
ObjectTemplate.setObjectTemplate 1 shokaku
Re: how I create an aircraft carrier(enterpreise) in Omaha b
thank you so much.