ESave
ESave Pro
ESave Pro
  • ESave Pro Documentation
  • Pro Comparison
  • 🕹️Getting Started
    • Installation
    • Demo
  • ESave Settings
  • 🧩Components
    • ESave Initializer
  • 📄Scripting
    • Initialization
    • Save Operation
    • Save States
      • Infinite Saves
        • Infinite Save Scripting
    • Saving & Loading Data
      • Saving
      • Loading
      • Custom Serializable Objects
      • Example Script
    • Data Deletion
  • 🛠️Support
    • Getting Help
  • 📚Changelogs
    • Latest Releases
  • ⭐Rate Me?
Powered by GitBook
On this page
  • Initialize
  • Terminate
  1. Scripting

Initialization

How to initialize ESave.

Remember to use the Esper.ESave namespace when scripting.

Initialize

Initialization is required for ESave to work properly. The Initialize method does a lot of things—the most important one being establishing the database connection.

ESave.Initialize();

This method returns true if ESave was successfully initialized. False is returned otherwise.

Terminate

The Terminate method disconnects from the database. It's recommended to use this method when the application or play mode is exited.

ESave.Terminate();

This method returns true if the database connection was successfully terminated. False is returned otherwise.

PreviousESave InitializerNextSave Operation

Last updated 26 days ago

📄