Page 1 of 1

Help a frenchman - Renforcement

Posted: Sat Nov 03, 2012 11:14 am
by Kylm
Hello,
Excuse me for my bad english. I'm french and I'dont speak english.

I'm making a scenario for BA but I'have difficult for renforcement. I'want renfort for the allied (british para, british piat and english mortar) at the 4 turn and for the axe (panzer IV) at the 8 turn.
I' know : I'm use a BSF extansion but i' don't the command. What'is the command please ?
I'don't write the command for the renforcement.
Thank you for your help.

Bonjour,
Je vous prie d'excuser mon mauvaise anglais mais je parle très mal anglais. Je suis entrain de réaliser un scénario dans lequel je souhaite faire intervenir des renforts alliés et allemand. J'ai compris que je devais faire à coter de mon fichier bam un fichier BSF mais je ne sais pas comment le rediger. Je souhaite faire intervenir des para britaniques, des piats britaniques, des mortiers britaniques et des panzer IV allemand.
Par avance je vous remercie de votre aide.

Re: Help a frenchman - Renforcement

Posted: Sat Nov 03, 2012 9:25 pm
by random27
im very happy when i see other french playing this game.
I don t know how you do reinforcement in editor but if you need someone to test your scenario i m here :)

Je suis de cherbourg et je serai très heureux de t aider si tu veux tester ton secanrio quand il sera pres

Re: Help a frenchman - Renforcement

Posted: Sat Nov 03, 2012 11:01 pm
by pipfromslitherine
There is no single command for reinforcements, you will need to add scripting which (at the point you want it to happen) adds the units to the map, moves the camera and shows a message (if those are things you want to do). I would suggest taking a look at the script of a mission which you know behaves in the way you want - generally they are commented to help see where reinforcements are arriving etc.

Cheers

Pip

Re: Help a frenchman - Renforcement

Posted: Sun Nov 04, 2012 3:51 pm
by Amaris
French here too :wink:

Send me a PM. I can help if I have time. :roll:

An example of reinforcement's code:

Code: Select all

	// Reinforcements	
	if( (GetTurn() == 8) )
	{
		// AddUnit with more options : FUNCTION PlaceUnit(x, y, facing, side, team, type)
		PlaceUnit(19, 31, 3, 0, 0, "BRENCARRIER") ;		
		PlaceUnit(25, 34, 4, 0, 0, "BRITISH_PARA") ;
		PlaceUnit(26, 34, 3, 0, 0, "BRITISH_PARA") ;
		PlaceUnit(25, 33, 4, 0, 0, "BRITISH_PARA") ;
		//PlaceUnit(25, 30, 4, 0, 0, "BRITISH_MORTAR") ;
		PlaceUnit(25, 30, 4, 0, 0, "british_piat") ;
			
		ShowUIScreenX( "BattleHead0", "Anim1", "IDS_REINF", "BHead0Image:british_infantry_head") ;
		AddVizCamCenter(26, 34);  
	}

Re: Help a frenchman - Renforcement

Posted: Sun Nov 04, 2012 8:14 pm
by Kylm
Thank you for your help.

Merci pour le coup de main.
En fait mon scénario est une mini campagne de 4 scénarios sur la libération de Ranville et la prise de pégasus bridge par les para britaniques. Je vous recontacterez pour les tester.