Skip to content

WeaponConfig ja JP

DekoKiyo edited this page May 12, 2024 · 1 revision

武器 (Weapon) の設定

Note

GTA5の武器についての情報があるサイトがあります。

設定名 説明 初期値 備考
chance このプリセットが使用される確率 100
Model 武器のモデル 空の文字列
Components 武器に装着するコンポーネント 任意

XML例

例1

<OfficerWeapons>
  <Weapon chance="100">
    <Model>WEAPON_PISTOL</Model>
    <Components>
      <Component>COMPONENT_AT_PI_FLSH</Component>
    </Components>
  </Weapon>
  <Weapon chance="50">
    <Model>WEAPON_COMBATPISTOL</Model>
    <Components>
      <Component>COMPONENT_AT_PI_FLSH</Component>
    </Components>
  </Weapon>
</OfficerWeapons>

例2

<RobbersThrowableWeapons>
  <Weapon chance="50">
    <Model>WEAPON_GRENADE</Model>
  </Weapon>
  <Weapon chance="50">
    <Model>WEAPON_SMOKEGRENADE</Model>
  </Weapon>
</RobbersThrowableWeapons>
Clone this wiki locally