The Sims 4 Community Library

The Sims 4 Community Library

An open source library with a focus on providing utilities and services to the larger Sims 4 modding community. Let’s not reinvent the wheel!

Description:
This is more of an API than a mod itself. It does nothing on its own and is meant as a framework for other Sims 4 developers to utilize in their own code
bases. Only install the library if you have installed a mod that requires it!

Looking to install S4CL?
Follow the installation instructions below for details.

Changelog:
For a changelog of the most recent updates and additions, take a look at the releases page.

Some of the Current Features (Not all features are listed here!):
For a complete list of features and utilities, check out the documentation
– Vanilla Tuning identifiers for:
– Buffs
– Interactions
– Relationship Bits
– Relationship Tracks
– Short-Term Relationship Bits
– Motives
– Many Others!
– Logging
– Log messages to a file
– Log custom exceptions
– Log the current stack trace, find out who or what is calling your functions!
– Useful when debugging code!
– Enable/Disable logs via a command in-game. `s4clib.enable_log `
– Exception Handling
– Log to a file exceptions that are thrown
– Catch exceptions within your functions via a decorator
– Custom Dialogs
– Ok/Cancel Dialog
– Choose Object Dialog
– Choose Sim Dialog
– Custom Icons:
– Right Arrow
– Navigate Into Arrow
– Question Mark
– Six Sided Dice
– Checked Box
– Unchecked Box
– Notifications
– Sim Icons
– Warnings
– Errors
– Info
– Story Dialogs (Add custom buttons, add sim icons)
– Sim Picker
– Prompt the player to choose a sim or a number of sims from a dialog.
– Custom Notifications
– Basic Notification – Display a notification with a title and description of varying urgency.
– Interactions
– Registration
– Register Interactions to:
– Terrain
– Ocean
– Objects (Sims, Furniture, etc.)
– Custom Interactions
– Create interactions the run Python code in their backends
– Interaction Types:
– CommonInteraction – Inherit from this to hook into an interaction and add python functionality to its functions
– Immediate Super Interaction – An interaction that doesn’t require a target to perform. It is started immediately and without an animation.
– Super Interaction – Like the Immediate Super interaction but these require a target to perform. (sim_chat is one example of a Super Interaction)
– Mixer Interaction – Use this for custom Mixer interactions.
– Social Mixer Interaction – Use this for custom Social Mixer interactions.
– Terrain Interaction – Use for interactions that appear when clicking on the ground.
– Perform logical checks to determine whether or not to show an interaction
– Or display an interaction as disabled, with a displayed tooltip that shows when the player hovers the interaction.
– Run Python code when an interaction is started, cancelled, or has finished.
– Custom Interaction Tooltips
– Display tooltips on interactions that display on hover.
– Locate CommonInteraction for an example of how to utilize custom tooltips in your own interactions.
– Event Handling
– Create, Dispatch, and Handle Dynamic Events
– Handle events without needing a reference to the code that sends the event.
– Decouple that code!
– Interval Events
– Run functions on millisecond intervals.
– Run functions once, after an amount of time has passed.
– Interaction events (Queued, Started, Ended, Interaction Outcomes)
– Sim
– Spawn – Occurs when a Sim spawns or is born into the world.
– Initialization – Occurs when a Sim is initialized (before being spawned).
– Occult Swapping – Occurs when a Sim changes to a different Occult (i.e. Human to Mermaid or Human to Vampire or vice verse)
– Zone Events
– Zone Update – Occurs every time the zone updates. (Basically every time the game ticks)
– Zone Teardown – Occurs every time the zone is torn down. Occurs before a loading screen, but only after a Zone had been previously loaded. (See Zone
Early/Late Load)
– Zone Save – Occurs every time a zone is saved. This occurs before the game saves for the player. Be careful with this one!
– Zone Early Load – Occurs when a zone is loaded, but before the players household has loaded.
– Zone Late Load – Occurs when a zone is loaded, but after the players household has loaded.
– Utilities
– Sim utilities
– Get the Active Sim
– Get Sim Info, Sim Instance, and Sim Ids
– Get All Sims nearby and filter which types of sims to get (Age, Species, Occult, Traits, Buffs, etc.)
– Occults – Check Occult Types of sims.
– Ages – Get/Set/Check Ages of sims.
– Genders – Get/Set/Check Genders of sims.
– Species – Get/Set/Check Species of sims.
– Buffs – Add/Remove/Check Buffs of sims.
– Traits – Add/Remove/Check Traits of sims.
– Sim State – Check various states of sims. (Wearing towel, Dying, etc.)
– Sim Spawn/Despawn – Spawn, Despawn, and Delete Sims.
– CAS
– Outfit – Set/Get/Update/Check the current outfit of sims.
– CAS Utils – Attach/Detach/Check cas parts of a sims outfit. You can put any cas part in any BodyType via these.
– Components – Get various components of objects (Statistics, Traits, Buffs, etc.)
– Resources – Load Resources or Tuning files by their identifiers. (Buffs, Traits, Statistics, Snippets, etc.)
– Icons – Load Icons provided by S4CL or your own Icons.
– Types – Determine the type of objects without needing to use isinstance or having a reference to the type itself in your own code.
– Time – Manage time. Pause the game, get/change the current game speed, get/set the time of day, etc.
– Collections – Determine if an object is a collection, combine collections, flatten collections, etc.
– Injection – Inject custom functionality into functions
– IO (Input/Output) – Write string data to a file or load string data from a file.
– Stack Trace – Retrieve the complete and full stack trace.
– Localization utilities
– Retrieve LocalizedStrings from StringTables of .package files.
– Format tokens into LocalizedStrings
– Display text in specific colors (Colors can be added by request)
– Blue
– Green
– Red
– Create Localized Tooltips – Use to display tooltips on interactions (while also displaying the interaction)
– These can be useful to give more information to the player about why something cannot be performed, instead of simply hiding that something.
– Weather
– Statistics
– Motives
– Many more!
– Testing Framework
– Write tests to test your python code and run the tests via a command within the game.
– The results will be logged to the ‘Documents/The Sims 4/’ folder
– A single function can handle multiple tests utilizing the same code with different arguments.
– Run tests via the command: `s4clib.run_tests `
– Class Names are the names of the classes decorated with ‘test_class’
– If no class names are provided, all of the tests will run.

Installation:
– Download the latest zip archive from the releases page (It is the one with the version number in it Example: sims4communitylib.v0.0.0.zip) (Ignore the ones that contain Source Code in their name)
– Unpack the archive using your favorite archiving tool.
– Drag the files/folders to your Mods directory.
– Keep in mind the ts4script file MUST be either top level (Directly in the Mods/ folder) or one folder deep (Mods/Blah/). Any deeper and it will not work.

Requirements:
– Sims 4 Patch Version 1.63.133.1020 (Eco Lifestyle) or above
– DLCs are NOT required, you only need to have an up to date game (Check the bottom of the main menu for your current version).

Planned Features:
– For a list of planned features, take a look at the repository.

Note for Modders:
– If you have ideas for additions to add or want one of the planned features sooner rather than later, I’m all ears! Let’s work together to create a library that we all can use!
– To see the documentation for S4CL check out the docs!

What is the workflow for working with S4CL?
– Create a project based off of the Template Project
– Use the green button in the top right The Main Page to download this project as a zip file.
– In your project, create another directory called `S4CL`.
– Open the downloaded project and copy the `Scripts/sims4communitylib` folder into the `S4CL` folder we created in the previous step. The folder structure should then be: `/S4CL/sims4communitylib`
– Right click the `S4CL` folder -> Mark Directory as -> Sources Root
– The `S4CL` folder should turn a blue color and the `sims4communitylib` folder should look like a folder with a dot (In other words, it should NOT be blue).
– Your folder structure should look like this: `/S4CL/sims4communitylib` at this point.
– Ensure you list in the description of your mod a link to the github releases (You may even link a specific release to ensure compatibility.)
– Ensure you properly attribute S4CL and its author according to the license located at the bottom of this readme.
– In order to prevent users from accidentally installing multiple copies of S4CL into their Mods folder, it is preferred to redirect the users of your mod to download S4CL from either the github repository or releases pages instead of bundling it with your mod.


Credits: ColonolNutty
1 Star2 Stars3 Stars4 Stars5 Stars (3 votes, average: 5.00 out of 5)
Loading...

This content was uploaded by website visitors. If you notice any mistake, please let us know.


Are you familiar with Sims 4 Mods? These add-ons are highly sought-after by skilled players worldwide as they can address a variety of issues. Utilizing Sims 4 The Sims 4 Community Library Mod can help you become a top gamer and achieve success more quickly. Adding the necessary files is simple and provides you with a host of unseen features that enable you to manage your gameplay more efficiently. With so many Sims 4 mods available on our website, you may need some time to explore them all. However, it is well worth the effort, as your gameplay will be elevated to a whole new level. Our database contains only the highest quality Sims 4 mods that meet the most stringent requirements, like The Sims 4 Community Library Sims 4 Mod. This guarantees that our visitors have access to the most exclusive and useful files. We are pleased to offer our visitors unlimited access to a vast variety of additional files, providing a wide range of benefits. This is a significant advantage that is crucial for remaining competitive. If that is your objective, you should try at least one file from our collection.


Download


Useful Information:
- Do you need any help? Join Sims 4 Modding Discord
- How to Install Sims 4 Mods
- Sims 4 Studio Download
- Sims 4 Mod Manager
- Sims 4 Mod Conflict Detector
- Sims 4 Modding guide / How to Make a Sims 4 Mod
- Sims 4 System Requirements
- How to Uninstall Sims 4 Mods
- Sims 4 Cheats

You may also like...

Leave a Reply

Your email address will not be published. Required fields are marked *