Some mods target the Mono version of the game, which is available by opting into the Steam beta branch "alternate"
Personnel
The NPC framework for Schedule I. NPC packs as plain folders; mods spawn them as real S1API NPCs - networked, saved, walking the world as if hand-coded.
| Date uploaded | a month ago |
| Version | 1.0.0 |
| Download link | DooDesch-Personnel-1.0.0.zip |
| Downloads | 25 |
| Dependency string | DooDesch-Personnel-1.0.0 |
This mod requires the following mods to function
LavaGang-MelonLoader
The World's First Universal Mod Loader for Unity Games compatible with both Il2Cpp and Mono
Preferred version: 0.7.3ifBars-S1API_Forked
S1API is an open source collaboration project to help standardize Schedule One modding processes. The goal is to provide a standard place for common functionalities so you can focus on making content versus reverse engineering the game.
Preferred version: 3.1.1README
Personnel - Custom NPCs for Schedule I
🛟 Need help or found a bug? Get support at support.doodesch.de.
The NPC framework for Schedule I. NPC packs are plain folders (designed in-game with Personify or written by hand); mods spawn them as real S1API NPCs - networked, saved, walking the world as if hand-coded. On its own this mod adds no NPCs; it's the dependency NPC packs and NPC mods are built on.
What it does
- Loads NPC packs from
UserData/Personnel/Packs/<PackName>/- amanifest.jsonplus optional PNGs (custom layers like tattoos). No code required to make one: use the in-game editor Personify. - Lets mods spawn any pack NPC as a full S1API NPC with one tiny subclass - prefab, networking and save/load handled by S1API - or apply just the designed look to any avatar via the API.
- Deep appearance: body, skin, hair, face, eyes, eyebrows, clothing, accessories and custom PNG layers.
- Duplicate-proof NPC ids, derived as
packname_npcname.
Early release: the core paths are verified in-game, but 1.0.0 has not yet seen extended real-world testing - it will mature over the coming releases. Reports at support.doodesch.de directly shape the next version.
Requirements
- Schedule I (IL2CPP) with MelonLoader 0.7.3+.
- S1API (pulled in as a dependency).
- Optional: Mod Manager & Phone App for the in-game settings UI.
Using it
Install Personnel plus any NPC pack or NPC mod that depends on it. Packs live in
UserData/Personnel/Packs/<PackName>/; on startup the log lists each pack with its NPC ids.
Want a template? Set LoadExamplePack to true (Mod Manager & Phone App UI or
UserData/MelonPreferences.cfg under Personnel_01_Main) and restart - a small example pack with two
NPCs is dropped into Packs/Examples to copy.
For developers
public sealed class PaleNpc : Personnel.PersonnelNpc
{
protected override string DefId => "examples_pale";
}
var npc = new PaleNpc(); // spawns a fully networked, saved S1API NPC from the pack definition
Full pack format, API reference and a working example consumer on GitHub.
Settings
LoadExamplePack (default false) - drop the bundled example pack on disk as a template. Editable in
the Mod Manager & Phone App UI or UserData/MelonPreferences.cfg.
License
MIT. See the included LICENSE.md.
CHANGELOG
Changelog
All notable changes to Personnel are documented here. This project adheres to Semantic Versioning.
[2.1.1] - 2026-08-01
Changed
- Runs on Schedule I 0.4.6f11.
- Needs S1API 3.1.1, up from 3.0.5. Update it along with the mod.
[2.1.0] - 2026-07-30
Writing a schedule meant guessing coordinates, because the game shows none anywhere. Now the console hands them to you.
Added
- Dev-console commands for pack authors (console has to be enabled in Settings):
personnel pos [HH:MM]- the spot you are standing on, as[x, y, z]or as a finishedwalkToaction for that time.personnel spawn- the same spot as aspawnblock, withrotationYandregionfilled in.personnel route HH:MM- collects a step per stop inUserData/Personnel/route.json;personnel route showprints the block ready to paste into"schedule": [ ... ],clearstarts over.personnel npcs [filter]- loaded definitions, and where the physical ones are right now.personnel help- the list.
- Results are copied to the clipboard and written to the MelonLoader log, with an in-game notification confirming the command ran.
[2.0.0] - 2026-07-22
NPC mods without code: a pack manifest can now describe everything an NPC needs - where it spawns, what it does all day, its economy role - and Personnel spawns it as a real world NPC on its own.
Added
autoRegister(pack level) /spawn.auto(per NPC): Personnel registers opted-in NPCs as real, networked, saved world NPCs with no consumer mod involved. A kill switch lives in the settings (EnableAutoRegister). Packs that already ship a consumer DLL are safe: a compiled NPC class for the same id always wins over the generated one.spawngrewrotationY(spawn yaw),region(now actually applied) andphysical. Non-physical NPCs are phone contacts only - no world body, no pathing cost. Default: physical exactly when the NPC has a schedule.schedule: full daily schedules in the manifest -walkTo,stayInBuilding,sit,useVendingMachine,useAtm,useSlotMachine,locationDialogue,locationAction,driveToCarPark,dealSignal. Times are"HH:MM"strings.relationships:delta,unlocked,unlockType,connections(by NPC id).customer: the whole customer economy - spending, orders per week, preferred day/time, standards, direct approach, first sample, mutual relation requirement, call-police chance, dependence, affinities, preferred properties.dealer: type, cut, signing fee, home, completed-deals variable, quality tolerances. Definitions with a dealer block now get the proper dealer base prefab (previously manifest dealers were built on the civilian prefab).inventory: random cash range, startup items (with quantities), clear-each-night.contact:mapMarker: falseremoves the phone-map marker,visible: false(experimental) skips the contact unlock.behavior.aggression,maxHealthandscaleare now actually applied to spawned NPCs.- Id stability: an authored
idin the manifest is respected (previously always derived from folder and name),packIdpins the derivation prefix, andsaveIdlets a renamed NPC keep matching old saves.schemaVersionmarks the manifest format (current: 2). - Distant custom NPCs get a proper billboard impostor instead of a blank one (on S1API builds that support impostor configuration).
Changed
- Pack and NPC registration order is now deterministic across machines - co-op peers agree on it.
- Contact unlock and map marker are unchanged by default but can be opted out per NPC.
[1.1.0] - 2026-07-08
Fixed
- Custom NPCs now show their real name in the phone Contacts app (previously "???") and can be found on the map. Personnel unlocks each spawned NPC's contact and gives it a map marker.
- Clothing no longer carries over from one spawned NPC to the next. The game clears only six of its eight avatar layer slots, so an NPC with more layers than that leaves a garment bound to the material for whoever is applied after it.
- A definition asking for more than eight body layers no longer loses one at random. The surplus is dropped deliberately, clothing first, and named in the log.
Added
- Opt-in economy roles via a pack's
behavior.conversation:"customer"or"dealer"makes the NPC a real customer or dealer, while the default"none"stays a plain, non-economy contact. API.AddMapMarker(GameObject)to add a map marker to any live custom NPC.
[1.0.0] - 2026-07-06
Initial release.
Added
- NPC pack loading from
UserData/Personnel/Packs/<PackName>/(manifest.json+ optional PNGs), with per-pack log lines listing the loaded NPC ids. - Deep appearance definitions mirroring the S1API avatar-settings surface: body, skin, hair, face, eyes, eyebrows, clothing layers, accessories, and custom PNG layers loaded from the pack folder.
- Duplicate-proof NPC ids, always derived as
packname_npcname(normalized); manifestidfields are ignored. PersonnelNpcbase class: one tiny subclass per NPC turns a pack definition into a full S1API NPC (prefab, networking, save/load handled by S1API).- Public API:
All,TryGet,Register,BuildAvatarSettings(def),ApplyAppearance(avatar, def),ConfigureFromDef(builder, def),OnReloaded,Reload. - Bundled example pack (off by default,
LoadExamplePack) with two NPCs as a copyable template. - Mod Manager & Phone App settings integration.