📄️ Create a Server
Before you can add and interact with scripts, you'll need to create a server in Verza. Creating a server is a straightforward process that can be done directly from the Verza player interface.
📄️ Setup SDK
Verza's SDK is designed to be framework-agnostic, meaning you can use it with any frontend (React, Vue, etc.) or backend framework. This provides maximum flexibility and allows you to use your preferred tools when building your game modes.
📄️ Setup Client Script
Client Scripts in Verza are JavaScript files, from creating a beatiful UI to animating objects adding interactivity to your server.
📄️ Setup WebServer Script
WebServer Scripts are lightweight server-side scripts that can receive commands and network events. They don't have to run 24/7 and work more like a serverless service.
📄️ Setup WebsocketServer Script
WebsocketServer Scripts are 24/7 running servers that receive events from the server in real-time. They can be used to create more robust logic, such as anti-cheat measures, and provide a more reliable experience for users. These scripts are ideal for developers who need more advanced functionality and want to build custom experiences that are not possible with Client Scripts or WebServer Scripts.