Skip to content
This repository has been archived by the owner on Oct 21, 2024. It is now read-only.

Bonjemus/CustomLoadout

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CustomLoadout

A simple SCP SL Synapse Plugin for custom loadouts


Configs

For base-game role and item ids, checkout DefaultRoleIDs & DefaultItemIDs

Default config:

[CustomLoadout]
# Loadout configuration
roleInventory:
- roleID: -1
  # Replace the role's default inventory
  replaceDefault: false
  # Items & their Chance to spawn
  items:
  - item:
      iD: 4294967295
      durability: 0
      weaponAttachments: 0
      xSize: 1
      ySize: 1
      zSize: 1
    chance: 100
  # Configure the class' ammunition
  ammoConfig:
  # Should the class' amount of ammo be replaced?
    replaceAmmo: false
    ammo9: 0
    ammo5: 0
    ammo7: 0
    ammo12: 0
    ammo44: 0
}

To add another custom loadout for a role, copy and paste

-
# Affected role
- roleID: -1
  # Replace the role's default inventory
  replaceDefault: false
  # Items & their Chance to spawn
  items:
  - item:
      iD: 4294967295
      durability: 0
      weaponAttachments: 0
      xSize: 1
      ySize: 1
      zSize: 1
    chance: 100
  # Configure the class' ammunition
  ammoConfig:
  # Should the class' amount of ammo be replaced?
    replaceAmmo: false
    ammo9: 0
    ammo5: 0
    ammo7: 0
    ammo12: 0
    ammo44: 0

one after the other within the roleInventory list.


For up to 8 custom loadout-items, just copy and paste

  - item:
      iD: -1
      durability: 0
      weaponAttachments: 0
      xSize: 1
      ySize: 1
      zSize: 1
    chance: 100

within the items list inside of your target role.