How to Begin

Welcome to the RCore Prison guide! This resource provides a comprehensive overview of features and step-by-step instructions for solving common issues (FAQs).


FAQ

chevron-rightPrison break other resource sounds (native)hashtag
  • This might happen, since together with our resource you might be hitting limit of the audio banks loaded at the time.

  • Solution: Go to rcore_prison/config.lua and set Sounds.UseCustomAlarmSound = true.

Sounds = {
    UseCustomAlarmSound = true, -- This allow you to enable/disable prison break alarm with own
}
chevron-rightWhere is the included Prison Map?hashtag
  • The included MLO is stored in rcore_prison/assets/includedMaps/

  • Extract all assets into your resources

  • Go to your server.cfg and run it like this.

RCore map (server.cfg) example

ensure rcore_prison_models
ensure rcore_prison_map
ensure [prison]
chevron-rightWhat is deployer shown in server console?hashtag
  • The Deployer is our tool designed to simplify the installation and management of third-party scripts.

  • It automates actions that require specific resource items in the player's inventory or framework, including importing inventory images.

  • This tool streamlines the process for our customers, making it easier and more efficient.

  • How it works: guidearrow-up-right.

chevron-rightInventory items not being removed when jailedhashtag
  • Make sure you are running one of the supported inventoriesarrow-up-right.

  • If using a supported inventory, check the Config.Stash.KeepItems section in rcore_prison/config.lua.

  • By default, items like water, bread, and sludgie are defined to remain in the inventory.

chevron-rightWhere can I change the canteen items?hashtag
chevron-rightHow can we make booths work with our phone resource?hashtag
  • Obtain the phone resource's documentation to determine compatibility.

  • Evaluate the documentation to identify possible integration methods.

chevron-rightMy items are not restored when I get releasedhashtag
  • Stashed items can be found at the Lobby Warden, typically near the prison lobby where the player is released.

  • If items are missing, check the database rcore_prison_stash to confirm if saved items exist.

chevron-rightWhy don’t I have a prison outfit when jailed?hashtag
chevron-rightAre prisoner accounts persistent?hashtag
  • By default, prisoner accounts remain persistent after release.

  • This behavior can be changed in rcore_prison/config.lua by setting the appropriate configuration to remove accounts upon release.

chevron-rightI cannot see any dispatch when running ps-dispatchhashtag
  • Execute the command prisonsetup ps-dispatch in the server console.

  • Restart the server and verify conditions where dispatch should be invoked. Refer to the dispatch troubleshooting guidearrow-up-right.

  • To enforce dispatch, modify DispatchSettings in config.lua and set both options to true (note: this is not recommended as it may break immersion).

chevron-rightWhere to change sentence timehashtag
  • Adjust sentence time in rcore_prison/config.lua under the Time section. Supported units include:

    • SEC

    • MIN

    • HOURS

    • DAYS

    • WEEKS

    • MONTHS

chevron-rightWhere to specify certain items to keep after jailhashtag
  • Modify Config.Stash.KeepItems in rcore_prison/config.lua to define specific items that remain after being jailed.

chevron-rightWhere to change NPC configurationshashtag
  • Edit NPC-related configurations in rcore_prison/data/presets/yourMap.lua.

chevron-rightHow to disable prison breakhashtag
  • Disable the prison break feature by setting Escape.Enable = false in rcore_prison/config.lua.

chevron-rightPlayer are getting banned for freecam when being jailedhashtag
  • Go to rcore_prison/config.lua and search for and set it to false: Prolog.Enable = false.

Last updated