車両を Arma 3 内で出現させる ASOR Vehicle Selector スクリプト

車両の諸元が表示された画面を見ながら、Arma 3 内で車両などを出現させる ASOR Vehicle Selector スクリプト が BI フォーラム上で公開されました。

対応しているのは車両や戦車、ヘリコプター、航空機、ボートで、ミッション作成者が指定した車両のみ、出現できるといったホワイト リスト機能が実装されています。

使いかた

ダウンロードしたスクリプト“ASORVS”フォルダを、ミッションのフォルダへ配置します。

C:\Users\OS名\Documents\Arma 3 - Other Profiles\プロフィール名\missions\ミッションのフォルダ

そして description.ext へ下記の構文を記述します。

#include "ASORVS\menu.hpp"

class CfgFunctions
  {
    #include "ASORVS\cfgfunctions.hpp"
  };

選択画面を開くために、エディタ内で適用なオブジェクトへ下記の構文を記述。

this addAction ["Spawn Helicopters" ,{[["helicopters"], [], "chopperspawn"] execvm "ASORVS\open.sqf";}];
1 つめの“”内にはアクション メニューに表示される文章、2 つめは車両の種類を選択、3 つめに許可する車両のクラス名、4 つめに出現させる場所を指定したマーカー名、5 つめに出現した時の高さ、6 つめに作成する前に安全を確認する範囲を指定可能です。
車両の種類の指定は"cars"と"tanks"、"helicopters"、"planes"、 "boats" から選びます。

ホワイト リストの例として、一部の戦車だけといった場合は

this addAction ["Spawn Tanks", {[["tanks"], ["B_MBT_01_mlrs_F", "B_MBT_01_cannon_F"], "tankspawn"] execvm "ASORVS\open.sqf";}];

クレジット

  • Lecks - Author
  • ASOR for helping to iron out most of the bugs and problems.

ライセンス

You are free to:
Share — to copy, distribute and transmit the work.
Modify — to adapt the work.

Under the following conditions:
Notification - If you improve this work, you must give Lecks a copy of the improvements and the option of including it in a new version of this work if he sees fit.
Profit - You can not use this work on monetized servers without permission from Lecks. You can use this work within Make Arma Not War entries.

ASOR Vehicle Selector - BI forum

0 コメント:

コメントを投稿