模组创作教程

(重定向自Modding tutorial
File:2021-04-04 01-44-43.mp4
Tutorial civic presentation.

This is an introductory modding tutorial for Stellaris. It covers steps necessary to create a basic mod.

Unless stated otherwise, every step assumes working on MS Windows.

Note: If you have a mod both as a local and as a workshop subscription game will refuse to load it.

Generate blank mod[编辑 | 编辑源代码]

You can get started creating a blank mod using either the Launcher to generate the starting files and directory, or doing so manually. Use the images below as a guide to creating a new mod with the Launcher, or skip down to the Manual section for instructions on creating the files yourself.

Launcher[编辑 | 编辑源代码]

Manually[编辑 | 编辑源代码]

Above effect can be achieved without using Paradox Launcher. Every mod requires two descriptor files, each one in proper directory.

  1. First mod descriptor contains metadata and local path where the game (Paradox Launcher) should look for the mod. It must be placed in %USERPROFILE%\Documents\Paradox Interactive\Stellaris\mod\
    1. %USERPROFILE% is your system user profile folder (by default this point to the same location as C:\Users\%USERNAME%),
    2. mod is a Stellaris folder for local mods (as opposed to Steam Workshop mods), Other Stellaris folders are logs, save games, screenshots etc.
  2. Second mod descriptor contains just metadata and is stored in root (main) mod folder, which in the example would be %USERPROFILE%\Documents\Paradox Interactive\Stellaris\mod\tutmod\
    1. If Paradox Launcher was not used to create a mod one must create root mod folder manually.
    2. Root mod folder descriptor must be named descriptor.mod,
    3. Paradox Launcher uses second descriptor when it imports a mod from mod store (Paradox Mods, Steam Workshop). When a mod is downloaded for a mod store this descriptor file is copied from the mod root folder to the Stellaris mod folder and a local path is added.

Tip: You can paste %USERPROFILE%\Documents\Paradox Interactive\Stellaris\mod\ directly into the file explorer address bar without specifying user name.

Properly created mod has the following file structure on start:

  1. %USERPROFILE%\Documents\Paradox Interactive\Stellaris\mod\tutmod.mod
  2. %USERPROFILE%\Documents\Paradox Interactive\Stellaris\mod\tutmod\descriptor.mod

Example descriptor contents below.

\mod\tutmod.mod \mod\tutmod\descriptor.mod
version="0.1"
tags={
	"Gameplay"
}
name="Tutorial Mod"
supported_version="2.8.1"
path="C:/Users/OldEnt/Documents/Paradox Interactive/Stellaris/mod/tutmod"
version="0.1"
tags={
	"Gameplay"
}
name="Tutorial Mod"
supported_version="2.8.1"

Note how the only difference between two descriptor files is the path line.

\mod\tutmod.mod \mod\tutmod\descriptor.mod
New tutmod folder with its first descriptor as visible in local mods directory. Note other local mods with friendly names and descriptors for Steam Workshop mods with an ugc_ prefix.
Second descriptor inside of root (main) tutmod folder. Unlike the first one, this one does not contain local path to the root mod folder.

Tip: You can use masks (wildmarks) in the version string for descriptor files. Instead of writing:

supported_version="2.8.1"

you can use:

supported_version="2.8.*".

Launcher will recognise mod as up to date even when minor Stellaris patch is released. This has no effect on mod loading and the code, supported_version is merely a visual indicator. Trivia: Some low level mods (like music or graphic) use also a wildmark for the second number (expanded support), which the launcher accepts (but throws an accusation entry in the error.log).

Modding tools[编辑 | 编辑源代码]

Tools checklist[编辑 | 编辑源代码]

See also: Modding#Tools & utilities

There are many valuable tools available for free, including free and open source. This tutorial recommends installing the minimum:

  • Notepad++ – Powerful and fast free and open source text editor, with tabs and split-window function.
    • Sublime Text – Powerful, moddable, hackable text editor. Install packages as your needs evolve. (not free and not that common anymore)
  • Studio Code (VSC) – Professional-grade freeware code editor. Do not confuse with Visual Studio.
    • CWTools – Paradox Games Language syntax database, freeware and open source, can be installed from within Visual Studio Code. Enables automatic checking if written code is valid.
    • Paradox Syntax Highlighting – Colourful syntax highlight, makes code much more readable.
  • WinMerge – Differencing and merging tool, free and open source. Contrasts the difference between two text files or folders.
  • 7-Zip – Free and open source file archive manager.
  • GIMP – Professional-grade free and open source image editor.
  • Paint.net – Freeware software for digital image editing. GUI reminiscent of classic MS Paint.
  • GitHub – Freeware code management and collaboration tools and services.
  • Discord – Freeware instant messaging and VoIP platform, useful for connecting with other modders on Stellaris Modding Den.
  • Irony Mod Manager – Launcher and mod manager with conflict solver for Paradox Games. More versatile and faster than Paradox Launcher. Free and open source.
  • File Commander / Total Commander (Windows) – Powerful, moddable, hackable file manager.

All of the above is available for free on Windows, Linux, and macOS (except Paint.net, Notepad++ and GitHub, which have viable alternatives).

Setting up CWTools[编辑 | 编辑源代码]

Visual Studio Code extension installation panel (File > Preferences > Extensions). Four installed extensions are visible, including CWTools and Paradox Syntax Highlighting.

CWTools is an extension which works with Visual Studio Code (VSC) and checks Paradox syntax on the go (as you write). It works with most games written for Clausewitz Engine (Stellaris being one of them). Some of the most useful features include:

  • Highlighting of errors with tooltip on what is possibly wrong.
  • Auto-completion of code, just press TAB when suggestion pops up while writing.
  • Generating full list of missing localisation keys.
  • Easy commenting and uncommenting of multiple lines. Right click > Command Palette > Toggle Line Comment.
  • Auto-formatting of whole file: Right click > Format Document.

Installation steps:

  • Download and install Visual Studio Code (VSC)
  • When opened select File > Preferences > Extensions
  • Click on "Search Extensions in Marketplace" search bar and type in "CWTools". Select "CWTools – Paradox Language Services" and click install in the right window.
  • Repeat search for "Paradox Syntax Highlighting" and install it as well.
  • Restart Visual Studio Code.

First steps[编辑 | 编辑源代码]

Preamble[编辑 | 编辑源代码]

While usually the best way to learn modding is to dissect a mod similar to what we want to achieve, this tutorial focuses on creating a mod from scratch.

We use Visual Studio Code as the primary code editor due to the powerful syntax checking function which CWTools extension grants.

# RED: Open editors (open files) # YELLOW: Open root mod folder (testmod) # GREEN: Outline of individual sections inside open file. # TEAL: Errors and problems highlight. # PINK: Right-click menu. # ORANGE: Scrollbar with preview.

Sources at hand[编辑 | 编辑源代码]

Following sources are invaluable to have at hand:

Mod content[编辑 | 编辑源代码]

Story-focused mods differ from mods introducing new gameplay mechanics or graphics components, but overlap almost always exists. This tutorial tries to touch as wide array of subjects as possible without delving into intricacies.

Game structure[编辑 | 编辑源代码]

Stellaris installation folder within Steam Library folder.
For full file structure refer to Modding page.

Stellaris stores most of the content in uncompressed folders easily accessible in its installation directory (SteamLibrary\steamapps\common\Stellaris\ for Steam installation). Modding the game requires overwriting the game files, part of game files, or adding new files next to existing ones, following folder structure and file naming the game uses (rules vary). Directly editing and adding files to game installation folder is highly discouraged. Use mod folder to overwrite or add content.

The most commonly changed contents are in:

  1. /common/ - bulk of game data and rules,
  2. /events/ - dictate when and how the game changes based on defined conditions,
  3. /localisation/ and /localisation_synced/ - text readable to player,
  4. /gfx/ - graphical components of the game,
  5. /interface/ - rules for use of graphical components and user interface design.

Every mod has to mirror structure of the installation folder. Mod containing localisation has to put all its language files on /localisation/, just as the game would.

Writing a first mod[编辑 | 编辑源代码]

\common\governments\civics[编辑 | 编辑源代码]

Example civic[编辑 | 编辑源代码]

See also: Government modding

We will begin by creating a new civic. Civics and origins are stored in \common\governments\civics\. Origins are civics with a few changes.

An example civic code (\common\governments\civics\00_civics.txt):

civic_beacon_of_liberty = {
 	potential = {
 		ethics = { NOT = { value = ethic_gestalt_consciousness } }
 		authority = { NOT = { value = auth_corporate } }
 	}
 	possible = {
 		authority = {
 			value = auth_democratic
 		}
 		ethics = {
 			OR = {
 				text = civic_tooltip_egalitarian
 				value = ethic_egalitarian
 				value = ethic_fanatic_egalitarian
 			}
 			NOR = {
 				text = civic_tooltip_not_xenophobe
 				value = ethic_xenophobe
 				value = ethic_fanatic_xenophobe
 			}
 		}
 	}
 	random_weight = { base = 5 }
 	modifier = {
 		country_unity_produces_mult = 0.15
 	}
 }

Let us breakdown the civic:

civic_beacon_of_liberty civic key, used to reference it in the code, including localisations
potential conditions for civic to be available for choice
possible conditions for civic to be a valid choice
random_weight determines likelihood of appearing for a randomly generated empire. If two civics exist and both have a weight of 5 then chances are 50:50.
modifier direct effects of a civic on an empire. More complex way is to use events checking for a civic and executing effects.

This specific civic has localisation key civic_beacon_of_liberty, is a potential choice only for empires which a) ethics are NOT gestalt and b) do NOT have authority corporate.

Any empire which meets the above criteria will have the civic as a choice, but it is possible to take the civic only if a) authority EQUALS democratic and b) ethics are EQUAL to egalitarian OR EQUAL to fanatic egalitarian, and NEITHER are equal to xenophobe or fanatic xenophobe.

Note how text = function is used to invoke a custom tooltip instead of automatically generated one. This is usually not needed but can be useful.

This civic has an absolute weight of 5 for the purpose of galaxy generation. If there are two other civics of weight 45 and 50, then the civic in question would have only 5% chance of appearing on a randomly generated empire, in principle (45 + 50 = 95 vs 5).

The civic gives the country a modifier of +15% Unity production.

Civic definitions do not support complex conditions but it is worth to familiarise yourself with how logical operators work.

Custom civic[编辑 | 编辑源代码]

Folder File Content
Open VSCode, File > Open root folder of our tutorial mod (will contain descriptor.mod) and create a folder for common, governments, and then civic folder. Folder structure has to match that of a Stellaris installation: \common\governments\civics\ .
Create a new civics file named tutmod_civics.txt .
Write the first line containing key name of the new civic: tutmod_civic = {} . If CWTools work you should see an error tooltip indicating lack of localisation for that key (will be fixed later).
CWTools suggestion TAB Repeat
Click between two {} brackets and start writing content of the block. Start a new line by pressing enter and try to write potential. Correctly installed CWTools will give you suggestions you can shuffle with arrow keys. Press TAB or click with mouse when you find potential.
CWTools will fill and format selected suggestion for you.
Start a new condition inside potential named ethics. Use CWTools suggestions as often as possible. It will save you a lot of time.

Let us write a code of the new civic using civic_beacon_of_liberty as a reference.

Code formatting[编辑 | 编辑源代码]

Note how you can comment out a part of code using # sign. Anything after # in a specific line will not be read by the game.

We will now make our own code by swapping out parts we do not like and inject our own.

First, let us remove auth_corporate exclusion and add a comment on ethic_gestalt_consciousness exclusion.

# civic_beacon_of_liberty = {
 tutmod_civic = {
 	potential = {
 		ethics = {
 			NOT = {
 				value = ethic_gestalt_consciousness
 			}
 		}
 		# authority = {
 		# 	NOT = {
 		# 		value = auth_corporate
 		# 	}
 		# }
 	}
 	possible = {
 		authority = {
 			value = auth_democratic
 		}
 		ethics = {
 			OR = {
 				text = civic_tooltip_egalitarian
 				value = ethic_egalitarian
 				value = ethic_fanatic_egalitarian
 			}
 			NOR = {
 				text = civic_tooltip_not_xenophobe
 				value = ethic_xenophobe
 				value = ethic_fanatic_xenophobe
 			}
 		}
 	}
 	random_weight = {
 		base = 5
 	}
 	modifier = {
 		country_unity_produces_mult = 0.15
 	}
 }
Adding content[编辑 | 编辑源代码]

We are adding an additional condition for ethics.

OR = {
	text = civic_tooltip_materialist
	value = ethic_materialist
	value = ethic_fanatic_materialist
}

The code should now look like below:

# civic_beacon_of_liberty = {
 tutmod_civic = {
 	potential = {
 		ethics = {
 			NOT = {
 				value = ethic_gestalt_consciousness # No gestalt.
 			}
 		}
 		# authority = {
 		# 	NOT = {
 		# 		value = auth_corporate
 		# 	}
 		# }
 	}
 	possible = {
 		authority = {
 			value = auth_democratic
 		}
 		ethics = {
 			OR = {
 				text = civic_tooltip_materialist
 				value = ethic_materialist
 				value = ethic_fanatic_materialist
 			}
 			OR = {
 				text = civic_tooltip_egalitarian
 				value = ethic_egalitarian
 				value = ethic_fanatic_egalitarian
 			}
 			NOR = {
 				text = civic_tooltip_not_xenophobe
 				value = ethic_xenophobe
 				value = ethic_fanatic_xenophobe
 			}
 		}
 	}
 	random_weight = {
 		base = 5
 	}
 	modifier = {
 		country_unity_produces_mult = 0.15
 	}
 }

To be a valid choice an empire has to be to some degree materialist, to some degree egalitarian, and neither xenophobe nor fanatic xenophobe. We did not have to worry about creating civic_tooltip_materialist localisation because it already exists in the game files.

Localisations[编辑 | 编辑源代码]

Localisation files[编辑 | 编辑源代码]

: 
主条目:Localisation modding

Useful console commands:

reload text – reloads localisation table.
switchlanguage english – switches used language and reloads localisation table.

CWTools highlights keys which are missing localisations, you can see full list of potential issues at the bottom of VSCode window:

Localisation key tutmod_civic is not defined for English
Localisation key tutmod_civic_desc is not defined for English

We need to create a localisation folder structure. Create \localisation\english\ folders inside root mod folder first, and then create tutmod_l_english.yml. VSCode will automatically encode file in UTF8 with BOM which Stellaris localisation files need. Both VSCode and Notepad++ are able to easily change file encoding if needed.

Localisation files require language declaration in the first line. Simply write:

l_english:

Supported language declarations are:

braz_por
english
french
german
polish
russian
simp_chinese
spanish

We have file prepared. Switch back to tutmod_civics.txt tab, right mouse click > Command Palette > Generate missing loc for all files. Copy generated strings into loc file.

We will fill the placeholders with the following information:

l_english:
 tutmod_civic: "Semper Exploro"
 tutmod_civic_desc: "This society prioritised scientific exploration over military expansion in the early space age."
 tutmod_civic_effects: "Start with a $science$ and assigned $scientist$ instead of $OUTLINER_FLEETS$."

Note the $ signs which can be used to refer to other localisation key, be it existing in game or modded one. You can view vanilla keys directly in SteamLibrary\steamapps\common\Stellaris\localisation\english\ .

Due to the way Stellaris localisations work, there is no way to set up a fallback localisation for other languages to use. If you generate localisations for English only, users playing the game in other language will see a raw key name, ie. tutmod_civic. We have to copy the localisation file \localisation\english\tutmod_l_english.yml to the corresponding language folders, change file name, and adjust language declaration at the beginning of the file:

\localisation\english\tutmod_l_braz_por.yml
\localisation\english\tutmod_l_english.yml
\localisation\english\tutmod_l_french.yml
\localisation\english\tutmod_l_german.yml
\localisation\english\tutmod_l_polish.yml
\localisation\english\tutmod_l_russian.yml
\localisation\english\tutmod_l_simp_chinese.yml
\localisation\english\tutmod_l_spanish.yml

With an example tutmod_l_braz_por.yml containing:

l_braz_por:

 tutmod_civic:0 "Semper Exploro"
 tutmod_civic_desc:0 "This society prioritised scientific exploration over military expansion in the early space age."
 tutmod_civic_effects:0 "Start with a $science$ and assigned $scientist$ instead of $OUTLINER_FLEETS$."

Advantage of using $ signs to reference other keys is that we do not have to translate string multiple times, game will automatically pull the content for the language user plays on. This might not always result in a grammatically correct sentence, it usually works best with the key being used in nominative case.

Custom tooltips[编辑 | 编辑源代码]

Game automatically generates localisations for things like tooltips based on effects in the game. For civics it means we do not have to write what effect civic has, as the game will pull all modifiers we wrote and generate sentences, ie. having below in civic definition:

modifier = {
 	country_unity_produces_mult = 0.15
}

will result in the following in the effects tooltip:

Monthly Unity: +15%

Sometimes we want to add a text for more effects. We will reference tutmod_civic_effects in the tutmod_civics.txt file for tutmod_civic and swap modifier while we are at it.

# modifier = {
# 	country_unity_produces_mult = 0.15
# }
description = "tutmod_civic_effects"
modifier = {
	ship_science_cost_mult = -0.25
}

Tutorial civics file should now look as below:

Tutorial civic tooltip without icon.
# civic_beacon_of_liberty = {
tutmod_civic = {
	potential = {
		ethics = {
			NOT = {
				value = ethic_gestalt_consciousness # No gestalt.
			}
		}
		# authority = {
		# 	NOT = {
		# 		value = auth_corporate
		# 	}
		# }
	}
	possible = {
		authority = {
			value = auth_democratic
		}
		ethics = {
			OR = {
				text = civic_tooltip_materialist
				value = ethic_materialist
				value = ethic_fanatic_materialist
			}
			OR = {
				text = civic_tooltip_egalitarian
				value = ethic_egalitarian
				value = ethic_fanatic_egalitarian
			}
			NOR = {
				text = civic_tooltip_not_xenophobe
				value = ethic_xenophobe
				value = ethic_fanatic_xenophobe
			}
		}
	}
	random_weight = {
		base = 5
	}
	description = "tutmod_civic_effects"
	modifier = {
		ship_science_cost_mult = -0.25
	}
	# modifier = {
	# 	country_unity_produces_mult = 0.15
	# }
}

Logs[编辑 | 编辑源代码]

game.log[编辑 | 编辑源代码]

We can use the following effect to output any string into the game.log:

log - Prints a message to game.log for debugging purposes
log = <string>
Supported Scopes: all

This is where most modders output data if they want to check how their mod works, it is especially useful for debugging event scripts. Note: it has been observed that individual instance of log effect in a code executes and writes to game.log only once per day, this is most likely to prevent log spam.

error.log[编辑 | 编辑源代码]

Game logs are stored in \Documents\Paradox Interactive\Stellaris\logs\. Modders use mostly error.log and game.log to debug the game. Start the game with the tutmod loaded and open error.log. You will find one line which references to tutmod (search mod prefix to quickly find relevant information):

[18:22:15][government_civic_type.cpp:185]: Did not find an icon for civic: tutmod_civic

We can use the following effect to output any string into the error.log (also see notes about game.log):

log_error - Prints a message to error.log for debugging purposes.
Supported Scopes: all

For now all we need to know that there is an icon missing for tutmod_civic.

Note: Game stops logging before the crash, error.log is therefore almost always useless in finding the crash cause. Crash data is stored in \Documents\Paradox Interactive\Stellaris\crashes\ and is useful only to the Stellaris developers.

EXE parameters[编辑 | 编辑源代码]

There are some special options for the stellaris.exe you can input to improve your logging/debugging:

-script_debug	- (Can ignore)
 -debug_mode	- Extra logging
 -debugtooltip	- Starts first game you enter with debugtooltip
 -logprefix		- Modifies each log file with the set prefix
 -logpostfix	- Modifies each log file name with the set postfix
 -logall		- Logs no longer fail to log duplicate string values

Events[编辑 | 编辑源代码]

fire_only_once[编辑 | 编辑源代码]

See also: Event modding, List of Stellaris triggers, modifiers and effects

Event is a script which changes state of the game by using effects, provided triggers are met and event was called.

Create a new \events\tutmod_events.txt file. Every events file has to have at least one namespace declared at the beginning. We use:

namespace = tutmod

It is a good practice for any mod which affects gameplay (changes checksum) to notify its presence to other mods. The commonly accepted way is to set up a global_flag other mods can check if it exists via effect:

set_global_flag - Sets an arbitrarily-named global flag
set_global_flag = <key>
Supported Scopes: all

Example file would look like the following:

namespace = tutmod
country_event = {
	id = tutmod.1
	hide_window = yes
	fire_only_once = yes
	trigger = {
		NOT = {
			has_global_flag = tutmod_installed
		}
	}
	immediate = {
		set_global_flag = tutmod_installed
	}
}
  • namespace = tutmod – declares namespace
  • country_event = {} – declares event of country scope, it is also name of an effect used to call an event.
  • id = tutmod.1 – declares unique id of the event. Consists of namespace and number, separated by a stop.
  • hide_window = yes – a popup window for player will not be created. This is how most events in the game work.
  • fire_only_once = yes – successfully fired event (called and met trigger conditions) will be added to blocklist and will never be used again in current game.
  • trigger = {} – contains list of conditions (triggers) which have to be met in order for called event to fire. Default this/root scope is defined by name of event scope (country_event here).
  • immediate = {} – contains list of effects which change the state of the game when event fires.

This event does not contain the is_triggered_only = yes declaration. This means event will be checked DAILY for EVERY country. If the event was of different scope, ie. pop_event, it would check for EVERY pop in the game DAILY. With a galaxy of 5000 pops it would mean 5000 checks every day. It is a very resource intensive way of scripting and therefore you should always add is_triggered_only = yes, unless there is a good reason not to. is_triggered_only = yes blocks event from checking itself and will require it to be called from elsewhere (more on that below).

We can limit checking of the event by using the aforementioned fire_only_once = yes. Event still checks daily for every country, but as soon as the first country fires the event it will be blocklisted and no longer checked. Since the conditions of the event are simple (NOT = { has_global_flag = tutmod_installed }) event will fire as soon as game starts.

Specific trigger used in trigger section is:

has_global_flag - Checks if a Global Flag has been set
has_global_flag = <flag>
Supported Scopes: all

Immediate section is self-explanatory. It contains a single effect:

set_global_flag - Sets an arbitrarily-named global flag
set_global_flag = <key>
Supported Scopes: all

This country event is read as the following by the game: Every country must check daily conditions of tutmod.1 event which are "global_flag tutmod_installed has NOT been set". If true set_global_flag = tutmod_installed, then add event to blocklist.

is_triggered_only[编辑 | 编辑源代码]

As a general rule every event should have is_triggered_only = yes declared. This makes game not checking the event until it is specifically called by an effect or on_action. Below is a code for the second tutmod event (should be written in \events\tutmod_events.txt):

# Removes military fleets, grants science ship and scientist.
# Scopes:
# Scope: root: country this: country
country_event = {
	id = tutmod.2
	hide_window = yes
	is_triggered_only = yes	# Fire only when called from elsewhere.
	trigger = {
		has_civic = tutmod_civic		# Must have tutmod_civic civic.
	}
	immediate = {
		every_owned_fleet = {
			# Iterate through every owned fleet of THIS country.
			limit = {
				is_ship_class = shipclass_military # only fleets meeting shipclass_military criteria
			}
			delete_fleet = {
				target = this				# Delete THIS fleet.
				kill_leader = no			# Do not delete leader of THIS fleet (unassigns).
			}
		}
		create_leader = {
			# Create leader for THIS country.
			class = scientist # Specified scientist class.
			species = this # Where THIS is the scope of where effect was written in (country, therefore species will be main country species).
		}
		create_fleet = {
			# Create fleet for THIS country.
			effect = {
				# Execute list of effects for THIS fleet.
				set_owner = prev # Set owner of THIS fleet to PREV (PREV/previous scope being country we in previous brackets refered to as THIS).
				create_ship = {
					# Create ship for THIS fleet.
					random_existing_design = science # of random design which is science ship.
					graphical_culture = owner # Visual style of the ship is the same as OWNER of the fleet (can use PREV here).
				}
				set_location = {
					target = owner.capital_scope.solar_system.starbase # Set location of the fleet to owner's capital_scope's solar_system's starbase.
					# distance = 0
					# angle = random
					# direction = out_system
				}
				assign_leader = last_created_leader # Assigns last created leader to the fleet.
			}
		}
	}
}

Code is more readable in VSCode.

This event has only one trigger which checks if the country has_civic = tutmod_civic.

There are several effects in the immediate section. Most of them are self-explanatory. All of them are listed on the effects list and it is worth reviewing them.

Scopes[编辑 | 编辑源代码]

: 
主条目:Scopes

Let us analyse scope operators used.

create_fleet = {
	effect = {
		set_owner = prev
		create_ship = {
			random_existing_design = science
			graphical_culture = owner
		}
		set_location = {
			target = owner.capital_scope.solar_system.starbase
		}
		assign_leader = last_created_leader
	}
}

In the code create_fleet is called directly in country_event = { immediate = {. This means THIS scope of the effect will refer to the country event was fired for.

root = country
this = country

Inside create_fleet effect we call a series of effects using effect block. Now, inside effect block, THIS scope operator will refer to this fleet (because it was called inside THIS fleet).

root = country
this = fleet
prev = country

Note how we can switch back to previous scope by using PREV scope operator.

effect = {
	set_owner = prev

Effect set_owner is called inside THIS fleet and targets PREV, which is country.

Common[编辑 | 编辑源代码]

on_actions[编辑 | 编辑源代码]

See also: Event modding#On Actions

We mentioned how events can be called from effects and on_actions. We can call events on_game_start to assure proper set up for the empire with tutmod_civic. Simply create \common\on_actions\tutmod_on_actions.txt file and declare events which should fire.

on_game_start_country = {
	events = {
		tutmod.1
		tutmod.2
	}
}

GFX[编辑 | 编辑源代码]

Tutorial civic tooltip with blank icon. Source: Stellaris Modding Den Discord Server, #shared-art channel.

All graphical assets are stored inside /gfx/ folder. Civics icons should be placed specifically in \gfx\interface\icons\governments\civics\ .

We need to create a tutmod_civic.dds which is 28x28 (resolution for civics icon). For the purpose of this tutorial we will use a blank template gratuitously donated to and available on Stellaris Modding Den Discord Server in the #shared-art channel.

\gfx\interface\icons\governments\civics\tutmod_civic.dds

GIMP and Paint.net are two very good tools commonly used to create Stellaris assets.

Testing a mod[编辑 | 编辑源代码]

Any trigger, effect or event can be tested from the console while in game. Console will accept any valid script input, as long as it is proceeded by the declaration of what it is (trigger, effect or event).

Console executes script on a scope which is currently selected (planet, fleet). To select empire scope open government menu. Scoping to unclickable objects might require additional scope operators in script.

We can check if an empire has a tutmod_civic by clicking on the empire flag and executing the following trigger script:

trigger OR = { has_civic = tutmod_civic has_valid_civic = tutmod_civic }
  • has_civic checks if the current country has the specified civic,
  • has_valid_civic checks if the current country has a certain civic and if its validated (performs additional check if country fulfils criteria of a given civic).

In practice we check only against one of the above triggers as has_civic makes has_valid_civic redundant when used.

Triggers are not always localised or reuse localisation keys. In the above example both tutmod_civic and has_valid_civic triggers use the same localisation key which can be confusing at first. This is a rare occurrence but is something to be mindful of.

We can also execute effects in the same way. Let us count ships of an empire and store value in a selected object, ie. planet. Click on a homeworld planet and execute the following:

effect owner = { every_owned_ship = { prevprev = { change_variable = { which = tutmod_var_num_ships value = 1 } } }

where:

  • owner = {} – scope operator, jumps from selected scope to the owner of selected scope (in the example from planet to a planet owner),
  • every_owned_ship = {} – iterates through each ship in the fleet or owned by the country and executes effects. We have omitted limit triggers because we want to iterate through all,
  • prevprev = {} – scope operator, while executed inside every_owned_ship effects it will jump back (prev) two times (prevprev), from every_owned_ship to owner and from owner to a scoped homeworld planet where effect was executed on.
  • change_variable – change the named variable by a given amount in a given scope.

To view a value we can either open up a save or use debugtooltip command and hover over an object to display flags and variables stored in it.

Starbases, mining stations and civilian ships count as ships. If we wanted to count all military ships we would iterate through every_owned_fleet which is_ship_class = shipclass_military and count every_owned_ship inside those fleets.


Note: Console accepts pasted in input, even if it contains multiple lines. It does not show it properly but it does execute it.

Git repository[编辑 | 编辑源代码]

Git is a version control system, it is used primarily in software development. It tracks changes to files and helps in collaboration. With Git repository set up you can:

  • Track and revert changes to your mod to any point prior.
  • Share code, including links to specific lines with ease.
  • Generate release packages from specific repository revisions, for the ease of download.
  • Allow others to propose tweaks to your code with ease, which you can accept and merge in with a press of a button.

For the purpose of this tutorial we use popular GitHub which offers free hosting service:

  • Create a folder specifically for GitHub repositories, ie. G:\GitHub\
  • Clone your mod folder to the above GitHub repositories folder. Rename cloned folder to something recognisable online if you want, in the example we rename G:\GitHub\tutmod\ to G:\GitHub\tutorial-mod-stellaris\.
  • Create GitHub account on GitHub homepage.
  • Download and install GitHub desktop client (available for Windows and Mac, Linux has distro-specific clients you can look into).
  • Open GitHub desktop client and login to your account (File > Options > Accounts). This is not strictly necessary but will allow you to push code to online repository. Further steps assume this is the case.
  • File > New Repository.
Create Preview initial commit Publish Available online
Make sure name matches mod folder name in the GitHub repositories folder, this will allow GitHub to include your files in the initial commit. Initialise this repository with README (can be edited later). Fill in description and leave other options unchanged.
Check if all changes are desired (green lines means added, red removed). You can edit files in repository folder at any time and changes will be immediately seen in this window. Press Publish repository (after initial upload this button is used to push changes).
Selected name will be a part of repository's URL. You can deselect private option if you wish repository to be immediately visible to the public. This can be changed at any time.
Repository is now available online. Pictured example can be accessed at https://github.com/OldEnt/tutorial-mod-stellaris .

Any changes to the repository simply require adding, removing or changing files in the repository folder. GitHub program monitors folder for any changes and will allow for update push if those are detected. Change of the code state is called a commit.

External links[编辑 | 编辑源代码]

References[编辑 | 编辑源代码]

帝国 帝国思潮政府 • 国民理念 • 起源承诺议程传统 • 飞升天赋法令政策遗珍科技自定义帝国
人口 岗位派系
领袖 领袖领袖特质
物种 物种物种特质
行星 行星行星特征 • 轨道矿藏建筑 • 区划行星决议
星系 星系恒星基地巨型结构虫洞 • 星门地图
舰队 舰队舰船 • 部件
地面战 陆军轰炸姿态
外交 外交 • 联邦 • 星海共同体评价修正宣战理由 • 战争目标
事件 事件异常现象特殊项目考古遗址
游玩 游玩定义研究 • 经济游戏开局
动态修改 动态指令效果触发条件作用域修正变量AI
媒体/本地化 Maya 导出器图形肖像旗帜事件图片界面图标音乐本地化
Other 控制台命令存档编辑Steam 创意工坊模组制作教程