コンテンツにスキップ
ライオットビット

ライオットビット

  • 家
  • ニュース
  • ガイド
  • ビデオガイド
  • パッチノート
  • 不正行為を報告する
  • 検索フォームを切り替え
軍への呼びかけ

軍への呼びかけ – Mission/Campaign Mod Creation Guide

ポストする 02/01/2022 に hikip922 コメントはありません の上 軍への呼びかけ – Mission/Campaign Mod Creation Guide
  • タイトル: 軍への呼びかけ
  • 発売日:
  • 開発者:
  • 出版社:
Information about Call to Arms is still incomplete. これを使用してゲームの詳細を記入するのにご協力ください。 お問い合わせフォーム.

This guide will show you the basics of making a mission mod in Call to Arms.

基本

この例の場合, the campaign will be called “campaign1” and the first mission “mission1”. These will be placeholders for your mod actual campaign name and mission. In this guide change these to your actual campaign and mission names. You will also need to know the Call to Arms folder location which will be in

C:\プログラムファイル (x86)\Steam\steamapps\common\Call to Arms

ステップ 1: 地図

In the location of your mod make a “リソース” フォルダ, inside that make a “地図” フォルダ.
then make a folder called “シングル” inside of that. Then make a folder for your campaign starting with “00_” so it appears above the built-in campaigns. So for this example, that folder would be “00_campaign1”. This folder will be where you place you place your missions. So in our case, we put the map with mission inside the “00_campaign1” フォルダ. So our mod should have a folder tree like this

mod_folder\resource\map\single\00_campaign1\mission1

ステップ 2: Environment

If you didn’t make your own environment for your mission and used a built-in one skip to Step 3. If you made a custom environment for your mission make a folder tree like this “resource\set\environment”. Then put your environment .set file in that folder like this:

ステップ 3: Localization

You now need your localization file for the mission, for our example, we would find it in “Call to Arms folder\localizations\default\interface\text\mission\mission1” inside should be the localization folder named whatever you named your mission.

It should have a file with a .pot extension and look something like this:

ステップ 4: Localization Placement

Next make a folder tree in your mods folder that looks like this “mod folder\localizations\default\interface\text\mission\single” then in “single make a folder with your campaign name for our case it would be named “00_campaign1” this is where you will put your mission1.pot ファイル.

ステップ 5: Localization Repositioning

Edit the mission1.pot file with a text editor like notepad or notepad++, each line of text in your mission will be listed here and look something like this:

msgctxt "mission/mission1/some_text"
msgid "Important mission text!"
msgstr ""

You want to change this to make the msgctxt for each of the lines go to the new location so edit each “msgctxt” line to refer to your new mission location. So for our example it should be changed to:

msgctxt "mission/single/00_campaign1/mission1/some_text"
msgid "Important mission text!"
msgstr ""

This is an important step or the mission will not recognize any of the text, Do this replacement for every line of msgctxt there are in the file. Make sure to leave the last part untouched so if the next line says:

msgctxt "mission/mission1/some_more_text"
msgid "Even more important mission text!"
msgstr ""

We would change this to:

msgctxt "mission/single/00_campaign1/mission1/some_more_text"
msgid "Even more important mission text!"
msgstr ""

ステップ 6: Mod.info

Now go back to your mods in the main folder and make a new text file and rename it to “mod.info”.

Open this with a text editor and paste this in:

{モッド
	{名前 "Mod Example"}
	{タグ "地図,モッド,ミッション"}
	{desc "Mod Description}
	{minGameVersion "1.228.0"}
	{maxGameVersion "1.268.0"}
}

変化 “Mod Example” to your mods name, そして変化する “Mod Description” to a brief few words about your mod, keep it as short as possible preferably only 4-5 words.

の “minGameVersion” should be the current version of the game which shows up in the top left of the game when you first start it up.

“maxGameVersion” Should be the current version +40 like in the example above.

ステップ 7: Mission Descriptions

Your mod should “技術的に” work by this point but we need some more polishing to really finish it.

初め, go to where you placed your .pot file and open it with a text editor and add these lines above the rest.

msgctxt "mission/single/00_campaign1/mission1/date"
msgid "Middle Title"
msgstr ""

msgctxt "mission/single/00_campaign1/mission1/place"
msgid "Bottom Title"
msgstr ""

msgctxt "mission/single/00_campaign1/mission1/name"
msgid "Name For Campaign Screen"
msgstr ""

msgctxt "mission/single/00_campaign1/mission1/name_big"
msgid "Top Main Title"
msgstr ""

msgctxt "mission/single/00_campaign1/mission1/story"
msgid "Mission Briefing"
msgstr ""

msgctxt "mission/single/00_campaign1/mission1/outro_completed"
msgid "Mission accomplished!"
msgstr ""

msgctxt "mission/single/00_campaign1/mission1/outro_failed"
msgid "Mission failure!"
msgstr ""

msgctxt "mission/single/00_campaign1/mission1/outro_start"
msgid ""
msgstr ""

Replace the text after msgid with what you want those areas to say, 離れる “outro_start” alone though.

Make sure the msgctxt points to the correct location as stated in step 5.

ステップ 8: Campaign Description

In the same folder as your missions “.pot” localization file, make a new text file and name it “campaign.pot” and add this text to the new file.

#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: 軍への呼びかけ (キャンペーン)\n"
"言語: en\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
"POT-Creation-Date: \n"
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: \n"

msgctxt "mission/single/00_campaign1/campaign/title"
msgid "Campaign Army ex US Marines"
msgstr ""

msgctxt "mission/single/00_campaign1/campaign/name"
msgid "Name of Campaign ex US Campaign"
msgstr ""

Change each msgid to what you want as your campaign titles. This will be displayed as the titles of your campaign. Make sure the msgctxt points to the correct location as stated in step 5.

ステップ 9: The .dds Files

I’ll be taking the simple approach on this but you can make custom images for your missions. For the simple version go to your call to arms folder and select map_basic.pak and open it with winrar/7zip or equivalent. クリック “地図” それから “シングル” その後 “00_usa” from here copy background.dds and header.dds and copy them into your campaigns folder. 私たちの例では “\mod example\resource\map\single\00_campaign1”

Then also copy “header.dds” to your missions folder, if you want a loading image you can take a screenshot ingame. You need a photo editor with support for .dds, “paint .net” (not a link its the name of the program) is a simple program for this. Open your screenshot with the program and save the file as preview.dds, then move that to your mission folder, for our example “\mod example\resource\map\single\00_campaign1\mission1”.

Here is an example of some missions with the .dds files in place

The minimap.png file is the minimap picture for the map I won’t explain that here but there are other guides to make minimaps for your maps if you want to. If you have a minimap.png file put it in its corresponding mission folder.

ステップ 10: Upload

If everything is done correctly your mod should be prepared to be played. Now we just have to upload it.

The uploader is located in:

C:\プログラムファイル (x86)\Steam\steamapps\common\Call to Arms\binaries\x64

and is called “call_to_arms_workshop.exe” open that and click create on the right side. のために “upload directory” chose your mods main folder, の “Preview image” needs to be a 512×512 jpeg file.

今のところ, make the “タイトル” of the mod just “test1” そして “説明” also just “テスト”, this uploader is very picky and may not upload the file if the title and description are more complex than that. Don’t worry though, it can be changed to something better after upload. のために “可視性” 選ぶ “プライベート” 今のところ, then click which tags apply to your mod, click the checkbox next to I accept the terms of the steam workshop contribution agreement. Then finally click publish and if everything goes well it should finish and appear in your workshop, only visible to you.

ステップ 11: Finishing Touches

After all this go to your steam profile and select Workshop Items, then click the mod you just uploaded. On the right side of the mods page click “Edit title & 説明” and you can now edit your title and description to your liking. You can also click “Add/edit images & videos” to add some pictures and videos of your mod. A few pictures can go a long way to inform people about your mod and make them more likely to want to play it. ついに, once you get the mod page looking like you to want select “Change Visibility” そしてクリックしてください “公共” people will now be able to play your mod and hopefully enjoy it!

これが今日私たちがこの目的で共有するすべてです 軍への呼びかけ ガイド. このガイドは元々、次の者によって作成および執筆されました。 hikip922. このガイドを更新できなかった場合, これに従って最新のアップデートを見つけることができます リンク.

このサイトのコンテンツがあなたの権利を侵害していると思われる場合, あなたの知的財産権を含む, お問い合わせフォームを使用してすぐにご連絡ください.
ガイド タグ:軍への呼びかけ

ポストナビゲーション

前の投稿: Stardew Valley Year Two Walkthrough
次の投稿: Lily’s Well Outfit Unlock Guide

返信を残す 返信をキャンセル

あなたのメールアドレスは公開されません. 必須フィールドにマークが付いています *

  • タイトル: 軍への呼びかけ
  • 発売日:
  • 開発者:
  • 出版社:
Information about Call to Arms is still incomplete. これを使用してゲームの詳細を記入するのにご協力ください。 お問い合わせフォーム.

免責事項

引用されたすべてのコンテンツはそれぞれの情報源から得られています. 当社があなたのコンテンツを許可なく使用したと思われる場合, 必ずご連絡ください。真剣に対応させていただきます.
  • 私たちに関しては
  • お問い合わせ
  • プライバシーポリシー
  • 利用規約

著作権 © 2025 ライオットビット.

搭載 プレスブックニュース ワードプレスのテーマ