A paycheck system for factions for the Athena Framework compatible with 4.0.0
of the Athena Framework.
- Open a command prompt in your main Athena Directory.
- Navigate to the plugins folder.
cd src/core/plugins
- Copy the command below.
SSH
git clone [email protected]:Stuyk/athena-plugin-factions-paychecks.git
HTTPS
git clone https://github.com/Stuyk/athena-plugin-factions-paychecks
- Append the following code to the Factions Plugin.
File: factions/webview/coreInjections.ts
export const FactionCorePageInjections = {
actions: {},
bank: {
BankPaychecks: defineAsyncComponent(() => import('../../athena-plugin-factions-paychecks/components/BankPaychecks.vue')),
},
members: {},
rankings: {},
settings: {
Paychecks: defineAsyncComponent(() => import('../../athena-plugin-factions-paychecks/components/Paychecks.vue')),
},
};