
#21
Posted 26 December 2006 - 10:49 PM
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_*
Posted 27 December 2006 - 07:13 PM
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.

Thanks,
Winger
#23
Guest_Winger_*
Posted 02 January 2007 - 05:53 PM
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
Posted 03 January 2007 - 01:12 PM
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_*
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.

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!- 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
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
Posted 03 January 2007 - 02:07 PM
#27
Posted 03 January 2007 - 02:20 PM
Are you sure there are no victims left?
#28
Guest_Winger_*
Posted 03 January 2007 - 02:30 PM
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.

#29
Guest_Winger_*
Posted 06 January 2007 - 08:55 PM
#30
Guest_jumbojet380_*
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_*
Posted 07 January 2007 - 08:27 PM

#32
Guest_Winger_*
Posted 10 January 2007 - 07:12 PM
Fail objective: 4 dead civilians = mission failed.
I hope someone can help me out on this. Thanks a lot in advance!!
#33
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_*
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...

#35
Guest_Robbyboy_*
Posted 12 July 2007 - 02:45 PM
Also tagged with one or more of these keywords: Emergency 3
Other Emergency games →
General Help →
Help Needed Urgently!Started by PJJW , 10 Nov 2015 ![]() |
|
![]()
|
||
Other Emergency games →
General Help →
Looking for a ModStarted by JackSWAS , 19 May 2015 ![]() |
|
![]()
|
||
Emergency 3
Other Emergency games →
General Help →
testStarted by Stan , 04 Nov 2013 ![]() |
|
![]()
|
||
Emergency 3
Other Emergency games →
General Help →
How to "open" all missions in free play?Started by buonggiorno , 24 Oct 2013 ![]() |
|
![]()
|
||
Emergency 3
Other Emergency games →
Technical Help →
[Help] Mod Installer - Emergency 3 - Gamefly versionStarted by tyler2112 , 06 Aug 2013 ![]() |
|
![]()
|