About This File
This is my attempt at creating my own roleplay gamemode from scratch utilizing frameworks such as Entity Framework and build tools in Visual Studio to ease development. The project is written in C# server-side and JavaScript client-side.
At the current state the following is implemented:
- Account system with CEF login screen
- Dynamic animation system with proper player positioning
- Character system that allows for as many characters as you wish linked to an account
- Advanced inventory & item system with item bases saved in the database
- Inventory menu using CEF
- Database system utilizing Entity Framework for ORM querying
- Clothing customizer using CEF
- Vehicle tuning using CEF
- System for interacting with any object in the gameworld
- Interactionwheel to interact with objects and perform actions
- Binding server-side actions to keystrokes from clients
- Playable roulette with multiple players
- and more ...
I originally began development in 2021 and abandoned the project again due to time constraints. So do not expect more updates to be released. Also note that some references to SVG (specifically for item icons) files will be null pointers as the files are removed. This is due to copyright, even though they are free for commercial use I've removed them and you'll have to include your own.
The setup in Visual Studio abstracts away some of the tedious tasks, such as moving client files written in JavaScript into the server folder everytime you wish to test something. This is achieved using post build commands inside Visual Studio to copy the files into wherever you have your server folder located. For the .DLL Visual Studio will output it to your server folder as well. You will need to edit the paths for your projects, but more on that in Getting Started.
I suggest heading to the GitHub repository and read the README for help on setting up your environment. There are a few steps but most is automated using Visual Studio commands and Entity Framework for the database.
Here is the GitHub link https://github.com/Andreas1331/ragemp-roleplay
You are free to use the project as you see fit.