Difference between revisions of "Development:Quests & Campaigns"

From VsWiki
Jump to: navigation, search
m (See also: HowTo:Edit News)
m (Implementation References: sp)
 
(21 intermediate revisions by one other user not shown)
Line 1: Line 1:
{{parent_link|parent=[[Development]]}}
+
This page is meant to provide a platform for campaign, mission, and quest & adventure programmers to describe the python scripting mechanisms and merge their ideas and best practices...
----
 
{{Template:Spoiler}}
 
=Quests, Missions, Campaigns & Adventures=
 
This page is meant to provide a platform for campaign/mission programmers and story writers to discuss and merge their ideas etc...
 
  
==The first major campaign written (Jenek)==
+
=Campaigns, Missions, Quests & Adventures=
See also the [http://vegastrike.sourceforge.net/forums/viewtopic.php?t=3246 forum thread] (comments & feedback) when this mission was first put into [[CVS]].
+
 
===To do===
+
==[[Development:Campaigns|Campaigns]]==
{{Fixme}} Improvements/expend it?
+
'''Campaigns''' describe the overall plot in which the player is involved. From the campaigns various missions are given depending on the progress of the universe and its various conditions.
 +
 
 +
For more information, head over to [[Development:Campaigns]].
 +
 
 +
==[[Development:Missions|Missions]]==
 +
'''Missions''' can be nodes of a campaign or independent missions available through fixers or the mission interface.
 +
 
 +
For mission editing, refer to [[Development:Missions]].
 +
 
 +
==[[Development:Quests|Quests and Adventures]]==
 +
'''Quests''' are equivalent to '''adventures''' and are independent events that happen in specific systems when the player is there.
 +
 
 +
A description on creating quests can be found in [[Development:Quests]].
 +
 
 +
=Common References=
 +
 
 +
Python scripting reference for campaigns, missions, and quests.
 +
 
 +
==Explanations==
 +
 
 +
===[[HowTo:Edit_Missions:Python:Summary|Summary about Python-Vegastrike Class Relationships]]===
 +
 
 +
===[[HowTo:Edit_Missions:Python:Bindings|Python - Vega Strike Bindings]]===
 +
 
 +
===[[Development:Python:AI Scripts|Python Inheritance with AI Scripts]]===
 +
 
 +
==Implementation References==
 +
===[[HowTo:Edit_Missions:Python:Bindings:CPP|VegaStrike C++ Functions Listing]]===
 +
 
 +
===[[HowTo:Edit_Missions:Python:Bindings:Python|VegaStrike Python Functions Listing]]===
 +
 
 +
===[[Development:Python:Functions|Useful Python Functions]]===
  
 
=See also=
 
=See also=
* [[HowTo:Edit Missions]]
 
 
* [[HowTo:Edit News]]
 
* [[HowTo:Edit News]]
 
* [[HowTo:Add Conversations]]
 
* [[HowTo:Add Conversations]]
  
 
[[Category:Development|Quests & Campaigns]]
 
[[Category:Development|Quests & Campaigns]]

Latest revision as of 17:48, 1 June 2010

This page is meant to provide a platform for campaign, mission, and quest & adventure programmers to describe the python scripting mechanisms and merge their ideas and best practices...

Campaigns, Missions, Quests & Adventures

Campaigns

Campaigns describe the overall plot in which the player is involved. From the campaigns various missions are given depending on the progress of the universe and its various conditions.

For more information, head over to Development:Campaigns.

Missions

Missions can be nodes of a campaign or independent missions available through fixers or the mission interface.

For mission editing, refer to Development:Missions.

Quests and Adventures

Quests are equivalent to adventures and are independent events that happen in specific systems when the player is there.

A description on creating quests can be found in Development:Quests.

Common References

Python scripting reference for campaigns, missions, and quests.

Explanations

Summary about Python-Vegastrike Class Relationships

Python - Vega Strike Bindings

Python Inheritance with AI Scripts

Implementation References

VegaStrike C++ Functions Listing

VegaStrike Python Functions Listing

Useful Python Functions

See also