Creating Objectives: Difference between revisions
(5 intermediate revisions by the same user not shown) | |||
Line 278: | Line 278: | ||
== Using Objectives to Trigger Events == | == Using Objectives to Trigger Events == | ||
Objectives can be used as a way of directing events in your map. Typical examples of | Objectives can be used as a way of directing events in your map. Typical examples of objective controlled events would be - Making enemies start spawning when an objective begins, or making a door open when the objective is completed successfully. There are no limitations on how you use events, but it is important to understand exactly when they are triggered, and which type of event you want to use for a given situation. Below is a list of all the events you have at your disposal in Objective Mode. <br> <br> | ||
[[File:ObjectiveEvents.jpg |left|x400px|link=File:ObjectiveEvents | [[File:ObjectiveEvents.jpg |left|x400px|link=File:ObjectiveEvents | ||
Line 288: | Line 288: | ||
===Activation Events=== | ===Activation Events=== | ||
Activation events are triggered the moment | Activation events are triggered the moment an objective begins. They are triggered in the order in which they are entered in the array, so if you want something to happen before another, move it closer to index 0. There is no limit to the number of activation events you can have, and the performance cost of having a large number of them is minor. | ||
===De-Activation Events=== | ===De-Activation Events=== | ||
Line 310: | Line 310: | ||
====Adding a Progress Event==== | ====Adding a Progress Event==== | ||
To add a new progress event to | To add a new progress event to a condition, select the condition and expand the 'Events' category. Then click on 'Progress Events' and select the 'Add' button. | ||
[[File:AddProgressEvent.jpg |left|x400px|link=File:AddProgressEvent | [[File:AddProgressEvent.jpg |left|x400px|link=File:AddProgressEvent | ||
Line 328: | Line 328: | ||
| EventName || Name || This is the event that will get triggered when the condition's completion state is more than 'progress pct' | | EventName || Name || This is the event that will get triggered when the condition's completion state is more than 'progress pct' | ||
|- | |- | ||
| ProgressPct || Float || This should be a value between 0 and 1. Whenever the condition's overall completion state is greater than this value, 'EventName' will be fired. i.e If you want an event to happen after 30 seconds out of 60 for a timed condition you would enter a value of 0.5 here. | | ProgressPct || Float || This should be a value between 0 and 1. Whenever the condition's overall completion state is greater than this value, 'EventName' will be fired. i.e If you want an event to happen after 30 seconds out of 60 for a timed condition you would enter a value of 0.5 here as this represents 50% completion. Certain condition types such as ObjCondition_Triggered will only ever have completion percentages of 0 or 1 as they are either incomplete, or fully complete. | ||
|- | |- | ||
| bRetriggerable || Bool || By default, once a progress event is triggered it will never trigger again until the objective is reset. If you set this bool to true it can trigger over and over again without requiring a reset. | | bRetriggerable || Bool || By default, once a progress event is triggered it will never trigger again until the objective is reset. If you set this bool to true it can trigger over and over again without requiring a reset. | ||
|- | |- | ||
|} | |} |
Latest revision as of 18:48, 7 November 2013
What is an Objective?
Objectives are the most important part of any Objective mode map. They determine how the gameplay should flow as well as setting winning / losing conditions for players. There is no limit on the number of objectives that can be placed in a map, but you should try to reduce it where possible to avoid clutter. It is important to note that there can only be one active objective at any given time. If you want to create complex 'multi-part' objectives you are often better off using multiple conditions inside a single objective than creating multiple different objective actors. Another thing to keep in mind is that objectives are always the same for all players connected to a server. You cannot assign one player an objective that is different from someone else's. Outside of these limitations, there are very few things you can't do with Objectives. They are highly configurable and capable of producing some very complex and interesting gameplay scenarios.
Placing your First Objective
Open the Actor classes browser and navigate to StoryObjectiveBase. Expand it and you should see 'KF_StoryObjective'.
Select it and right click anywhere in your map with solid ground. You should see the option to 'Add KF_StoryObjective'. Select this option and you should now see a green icon with a checkmark in the viewport.
|