Jump to content


Photo

Modding & Maps

Emergency 3

  • Please log in to reply
34 replies to this topic

#21 Hoppah

Hoppah

    Boss cat

  • Administrators
  • 3,879 posts
  • Gender:Male
  • Location:Special Needs Department

Posted 26 December 2006 - 10:49 PM

The map name in the editor is not very important.
You have to save your map as a new .e3m file.
When you want to play your map you have to edit at least the following files:
- Lang/en/missions.xml (mission briefing and name)
- Specs/vehicles.xml (add mission number to each vehicle)
- Specs/campaign.xml (mission index, budget, path to .e3m file)

Mission conditions are used to calculate your score (percentage) when you finish a mission.
You can't write scripts with the editor, you need to understand scripting to make your own scripts.
Scripting is mostly copy/paste from other scripts, but you need to understand what everything means.
When you want to request a script on a forum people need to know at least the following things:
- Objectives (example: extinguish all fires)
- Fail Objectives (example: 2 death civilians = mission failed)

The most important thing is that you never edit a file in the Data folder, but copy everything into a new mod. Example: when you want to edit vehicles.xml copy that file to "Emergency 3/Mods/[YOUR MOD]/Specs/". Create new folders if neccesary.

Tips:
- Compare with other mods. That helps alot.
- Try to find things yourself instead of asking someone. You will learn more from that.

Good luck,

Hoppah

#22 Guest_Winger_*

Guest_Winger_*
  • Guests

Posted 27 December 2006 - 07:13 PM

Thanks a lot Hoppah! :1046275747_biggthumpup:

I'm gonna give it a try and see how far I will come on my own. As soon as I need help you'll hear from me. :P

Thanks,

Winger

#23 Guest_Winger_*

Guest_Winger_*
  • Guests

Posted 02 January 2007 - 05:53 PM

I've made a very easy mission now, just to see if it works. Everything works now except for one thing: the mission won't end. I've checked my script a lot of times and compared it to some other scripts, but I can't find a mistake there. What do you think will be the problem? Can it be another file that's not correct, or is it something in the editor that should be changed? (I've added the script at the bottom of my message)

Thanks in advance!

object Mission22 : MissionScript
{

Mission22()
{
System::SetEnv("e3_doocclusion", 0);
}

~Mission22()
{
System::SetEnv("e3_doocclusion", 1);
}

void Start()
{
Audio::PlaySoundtrack("3", 0.1f);
Mission::AddObjective("M22_TRANSPORT_INJURED");

}

void OnSquadVehicleArrived(Vehicle *v)
{
if (v->HasCommand("GoToPolicestation"))
{
v->RemoveCommand("GoToPolicestation");
}

if (v->HasCommand("GoToHospital"))
{
v->RemoveCommand("GoToHospital");
}
}

MissionState GetMissionState()
{
if(Mission::IsDefaultLogicNegative())
return MISSION_FAILED;

// Wenn keine verletzten und toten Personen mehr im Level, dann Objective erfolgreich, andernfalls nicht erfuellt.
// Falls Du das nur für Zivilisten haben willst, ersetze Persons durch Civils
if(Mission::GetCounter("Injured Persons") + Mission::GetCounter("Dead Persons") == 0)
{
if(!Mission::IsObjectiveAccomplished("M22_TRANSPORT_INJURED"))
Mission::SetObjectiveAccomplished("M22_TRANSPORT_INJURED", true);
}
else
{
if(Mission::IsObjectiveAccomplished("M22_TRANSPORT_INJURED"))
Mission::SetObjectiveAccomplished("M22_TRANSPORT_INJURED", false);
}

// Habe hier Mission::AllObjectivesAccomplished() eingefügt, damit die Mission erst erfuellt ist, wenn die DefaultLogic (in Deinem Fall Injured Civils equal 0) erfuellt ist und alle Objectives aus dem Script (sprich: Feuer aus).
if(Mission::IsDefaultLogicPositive() &&
Mission::AllObjectivesAccomplished())
return MISSION_SUCCEEDED;

return MISSION_RUNNING;
}

};

//by Kaspi. Edited by Hoppah


As you might notice, I've used a part of a script from the La mod. I hope that's not illegal if it's only for my own usage.

#24 Hoppah

Hoppah

    Boss cat

  • Administrators
  • 3,879 posts
  • Gender:Male
  • Location:Special Needs Department

Posted 03 January 2007 - 01:12 PM

It's no problem you use my script.
Actually, I'm very happy someone is trying to make a new mission too.
That's why I've fixed your script:
- You have to edit objectives.xml (in the Lang folder) for the objectives, but you can also use this what is easier for you I think:
const char TRANSPORT_INJURED[]		= "Bring all injured people to the hospital!";
- Your mission is for your own mod or are you adding the mission to my LA mod. If you're making this for your own mod you don't need this:
void OnSquadVehicleArrived(Vehicle *v)
	{
		if (v->HasCommand("GoToPolicestation"))
		{
			v->RemoveCommand("GoToPolicestation");
		}

		if (v->HasCommand("GoToHospital"))
		{
			v->RemoveCommand("GoToHospital");
		}
	}
Because the vehicles in your mod don't have the commands GoToPolicestation and GoToHospital then.

I've also made the script more neatly by adding Tabs when you are opening a code ( symbol: { ). This way you can check your script for mistakes much easier.
So, this should be your final script:
const char TRANSPORT_INJURED[]		= "Bring all injured people to the hospital!";

object Mission01 : MissionScript 
{ 
	Mission01() 
	{
		System::SetEnv("e3_doocclusion", 0);
	}

	~Mission01() 
	{
		System::SetEnv("e3_doocclusion", 1);
	} 

	void Start() 
	{ 
		Audio::PlaySoundtrack("3", 0.1f);
		Mission::AddObjective(TRANSPORT_INJURED); 
	} 

	MissionState GetMissionState() 
	{ 
		if(Mission::IsDefaultLogicNegative()) 
			return MISSION_FAILED; 

		if(Mission::GetCounter("Injured Persons") + Mission::GetCounter("Dead Persons") == 0) 
		{ 
			if(!Mission::IsObjectiveAccomplished(TRANSPORT_INJURED)) 
				Mission::SetObjectiveAccomplished(TRANSPORT_INJURED, true); 
		} 
		else 
		{ 
			if(Mission::IsObjectiveAccomplished(TRANSPORT_INJURED)) 
				Mission::SetObjectiveAccomplished(TRANSPORT_INJURED, false); 
		} 

		if(Mission::IsDefaultLogicPositive() && Mission::AllObjectivesAccomplished()) 
			return MISSION_SUCCEEDED; 

		return MISSION_RUNNING; 
	} 
}; 

//By Hoppah

Note; when you use this // in front of a line, emergency 4 won't 'read' that line, so you can add additional information like //By Hoppah or //By Winger.

#25 Guest_Winger_*

Guest_Winger_*
  • Guests

Posted 03 January 2007 - 01:56 PM

It's no problem you use my script.
Actually, I'm very happy someone is trying to make a new mission too.
That's why I've fixed your script:
- You have to edit objectives.xml (in the Lang folder) for the objectives, but you can also use this what is easier for you I think:

const char TRANSPORT_INJURED[]		= "Bring all injured people to the hospital!";


That's easier indeed. :happy:

- Your mission is for your own mod or are you adding the mission to my LA mod. If you're making this for your own mod you don't need this:

void OnSquadVehicleArrived(Vehicle *v)
	{
		if (v->HasCommand("GoToPolicestation"))
		{
			v->RemoveCommand("GoToPolicestation");
		}

		if (v->HasCommand("GoToHospital"))
		{
			v->RemoveCommand("GoToHospital");
		}
	}
Because the vehicles in your mod don't have the commands GoToPolicestation and GoToHospital then.

I was already wondering what this was for, and as I'm not making the mission for the LA mod I've deleted this part. Thanks for the info!

I've also made the script more neatly by adding Tabs when you are opening a code ( symbol: { ). This way you can check your script for mistakes much easier.
So, this should be your final script:

const char TRANSPORT_INJURED[]		= "Bring all injured people to the hospital!";

object Mission01 : MissionScript 
{ 
	Mission01() 
	{
		System::SetEnv("e3_doocclusion", 0);
	}

	~Mission01() 
	{
		System::SetEnv("e3_doocclusion", 1);
	} 

	void Start() 
	{ 
		Audio::PlaySoundtrack("3", 0.1f);
		Mission::AddObjective(TRANSPORT_INJURED); 
	} 

	MissionState GetMissionState() 
	{ 
		if(Mission::IsDefaultLogicNegative()) 
			return MISSION_FAILED; 

		if(Mission::GetCounter("Injured Persons") + Mission::GetCounter("Dead Persons") == 0) 
		{ 
			if(!Mission::IsObjectiveAccomplished(TRANSPORT_INJURED)) 
				Mission::SetObjectiveAccomplished(TRANSPORT_INJURED, true); 
		} 
		else 
		{ 
			if(Mission::IsObjectiveAccomplished(TRANSPORT_INJURED)) 
				Mission::SetObjectiveAccomplished(TRANSPORT_INJURED, false); 
		} 

		if(Mission::IsDefaultLogicPositive() && Mission::AllObjectivesAccomplished()) 
			return MISSION_SUCCEEDED; 

		return MISSION_RUNNING; 
	} 
}; 

//By Hoppah


My script looks the same now, except for the tiny thing that in my script it's 'Mission22' instead of 'Mission01'.

Note; when you use this // in front of a line, emergency 4 won't 'read' that line, so you can add additional information like //By Hoppah or //By Winger.


Does the same thing apply for emergency 3 as I'm actually modding a mission for emergency 3? I guess so as it doesn't show up anywhere.

Thanks a lot for your help again Hoppah, I'm glad you're willing to help me out so much. I've changed my script now so it's the same as the one you posted, but I still have the same problem that my mission does never end. I've waited for ten minutes (while I had the mission completed already after a minute or so), but it doesn't quit the mission or anything, and I don't get any results. The only option is to quit the mission myself, but of course it would be nicer if the mission just quits itself as soon as you've completed the objectives. Do you have any idea what could be the problem?

#26 Stan

Stan

    Webmaster

  • Webmaster
  • 6,911 posts
  • Gender:Male
  • Location:Vaals - Nederland

Posted 03 January 2007 - 02:07 PM

Yes, same for eemrgency 3
Webmaster & Technical Support

#27 Hoppah

Hoppah

    Boss cat

  • Administrators
  • 3,879 posts
  • Gender:Male
  • Location:Special Needs Department

Posted 03 January 2007 - 02:20 PM

So, you have transported all injured people to the hospital (= objective finished?) and the mission won't end?
Are you sure there are no victims left?

#28 Guest_Winger_*

Guest_Winger_*
  • Guests

Posted 03 January 2007 - 02:30 PM

I'll check again if there are really no victims left, but the thing is that the red light in front of the objective "Bring all injured people to the hospital!" turns green as soon as I've taken the first (and as far as I know) only victim out of the scene.

Edit: I've checked the map in the editor, I hid everything except for the 'persons' and I found only one victim.

2nd Edit (4th januari): As I can't find the mistake/failure in the first map/mission I'm gonna try and make a new map, this time I'm gonna try a harder one as I think I understand most things now, except how to get a proper ending. ;) As soon as I've finished it I'll let you know if this one works.

#29 Guest_Winger_*

Guest_Winger_*
  • Guests

Posted 06 January 2007 - 08:55 PM

I've made a second mission now and it's pretty cool imo. I've tested it and it seems to work fine, I just have to test if the fail conditions work too. Things are looking better now and I've just started to build my third mission.

#30 Guest_jumbojet380_*

Guest_jumbojet380_*
  • Guests

Posted 07 January 2007 - 06:26 PM

I've made a second mission now and it's pretty cool imo. I've tested it and it seems to work fine, I just have to test if the fail conditions work too. Things are looking better now and I've just started to build my third mission.


can u upload the mission in the download database so we can download them and play them please ???

#31 Guest_Winger_*

Guest_Winger_*
  • Guests

Posted 07 January 2007 - 08:27 PM

I still have to test the mission and see if the fail conditions work. After that I'll first make some more missions and maybe I'll upload a missionpack in the near future then, if I have enough time to make more missions. Otherwise I'll upload it as a single mission. Just be patient and see what happens. :happy:

#32 Guest_Winger_*

Guest_Winger_*
  • Guests

Posted 10 January 2007 - 07:12 PM

I've tested my mission multiple times now, on the fail conditions, but it just won't fail the mission. I've tried multiple different scripts, but none of them seems to work. This is the fail objective I want to add:
Fail objective: 4 dead civilians = mission failed.
I hope someone can help me out on this. Thanks a lot in advance!!

#33 Hoppah

Hoppah

    Boss cat

  • Administrators
  • 3,879 posts
  • Gender:Male
  • Location:Special Needs Department

Posted 11 January 2007 - 10:49 AM

I've tested my mission multiple times now, on the fail conditions, but it just won't fail the mission. I've tried multiple different scripts, but none of them seems to work. This is the fail objective I want to add:
Fail objective: 4 dead civilians = mission failed.
I hope someone can help me out on this. Thanks a lot in advance!!


Add this under "MissionState GetMissionState()":

if(Mission::GetCounter("Injured Persons") > 3)
	{
		return MISSION_FAILED;
	}

And in case you want to display a message when the mission failes, add this too:

const char *GetFailReason()
	{
		if(Mission::GetCounter("Injured Persons") > 3)
		{
			return "Too much injured people! Mission failed!";
		}	
	}


#34 Guest_Winger_*

Guest_Winger_*
  • Guests

Posted 11 January 2007 - 05:24 PM

Add this under "MissionState GetMissionState()":

if(Mission::GetCounter("Injured Persons") > 3)
	{
		return MISSION_FAILED;
	}

And in case you want to display a message when the mission failes, add this too:

const char *GetFailReason()
	{
		if(Mission::GetCounter("Injured Persons") > 3)
		{
			return "Too much injured people! Mission failed!";
		}	
	}


Okay I get it (It's much easier than I thought it would be, I must be stupid... :stupid: ). Thanks a lot again Hoppah, you're a great help, I appreciate it!

#35 Guest_Robbyboy_*

Guest_Robbyboy_*
  • Guests

Posted 12 July 2007 - 02:45 PM

maybe a great topic kick, but are these missions ever finished?





Also tagged with one or more of these keywords: Emergency 3