Page 1 of 1

how I create an aircraft carrier(enterpreise) in Omaha beach

Posted: Mon Aug 04, 2014 11:11 pm
by anselmus
It is possible to place an aircraft carrier (enterpresie) OMAHA BEACH map? Co-op and Conquest, but SSM, not CSM.

Re: how I create an aircraft carrier(enterpreise) in Omaha b

Posted: Tue Aug 05, 2014 2:15 am
by Vilespring
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.

Re: how I create an aircraft carrier(enterpreise) in Omaha b

Posted: Tue Aug 05, 2014 5:23 pm
by anselmus
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

Posted: Wed Aug 06, 2014 6:53 am
by freddy
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

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
if you dont have any unused spawners you can add vehicles to a spawner like this

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

Posted: Thu Aug 07, 2014 2:41 am
by anselmus
thank you so much.