Important
This plugin requires some dependencies, make sure you have installed them first.
This is rebar-atm! A simple plugin which provides a banking system for a server on alt:V using the Rebar Framework made by Stuyk
- Clone these repositories into your Rebar alt:V server
main
directory.
cd /path/to/your/rebar-altv/
git clone https://github.com/Stuyk/rebar-currency.git src/plugins/currency
git clone https://github.com/ASCENDED-Team/asc-notifications.git src/plugins/asc-notifications
- Now also clone this repository into your Rebar
main
directory
git clone https://github.com/dorn3r/rebar-atm.git src/plugins/rebar-atm
- Got it? Ok now you're ready to go. They'll load automatically once you start the server.
Currently there are just two configurations which can be set. But i'm sure you can customize it if you modify the config.ts
file.
export const atmConfig = {
Settings: {
showAtmBlips: true, // set to false if you don't want to show the blips all over the map.
},
Plugins: {
AscendedNotify: true, // set to false disables the possibility to show notifications using asc-notifications api.
},
};