Users can manage their money through a wallet or a bank account. The system provides various commands to interact with their finances and items.
- Wallet and Bank: Manage money in the wallet or bank.
- Marriage System: Marry another user and display the status on the profile.
- Profiles: Display badges, marriage status, and other information.
- Gambling System: Engage in various gambling activities to win or lose money.
[]
= optional argument<>
= required argument
Command | Description | Implemented |
---|---|---|
/economy |
Enable/Disable the economy module on the server | ✅ |
Command | Description | Implemented |
---|---|---|
/balance [user] |
Check the amount of money in the wallet and bank | ✅ |
/deposit <amount> |
Move money from the wallet to the bank | ✅ |
/withdraw <amount> |
Move money from the bank to the wallet | ✅ |
/pay <user> <amount> |
Send money to another user | ✅ |
/rob <user> |
Steal money from another user's wallet (1-hour cooldown) | ✅ |
/daily |
Claim the daily reward | ✅ |
/leaderboard |
View top users based on wealth. | ✅ |
Command | Description | Implemented |
---|---|---|
/work <job> |
Get items and money (1-hour cooldown, requires tool for job) | ✅ |
/transfer <item> <user> |
Give items to another user | ✅ |
/inventory [user] |
Check the current inventory of items | ✅ |
/shop |
View the shop | ✅ |
/sell <item> [amount] |
Sell an item | ❌ |
/buy <item> [amount] |
Buy an item | ❌ |
Command | Description | Implemented |
---|---|---|
/marry <user> |
Marry another user (requires marriage ring) | ✅ |
/divorce |
End a marriage (ring not returned) | ✅ |
Command | Description | Implemented |
---|---|---|
/bet <amount> |
Place a bet and try to win more money | ✅ |
/coinflip <amount> |
Flip a coin and double your money if you win | ✅ |
Command | Description | Implemented |
---|---|---|
/profile |
View profiles or edit yours | ✅ |
There is also a profile context command.
Users can make confessions which are anonymous by default but can be made public.
Command | Description | Implemented |
---|---|---|
/confess |
Make a confession | ❌ |
/confession |
Configure the confession module | ❌ |
Confession:
export type ConfessionDocument = {
_id: Types.ObjectId; // Mongoose unique Id
authorId: string; // Submitter (not visible to other or staff when anonymous)
guildId: string; // Guild
channelId: string; // Confession channel
messageId: string; // Message sent to the confession channel
confession: string; // Text of the confession
anonymous: boolean; // Anonymous (default: true)
};
Module:
export type ConfessionConfigDocument = {
_id: Types.ObjectId; // Mongoose unique Id
guildId: string; // Guild this configuration is for
enabled: boolean; // Whether module is enabled or not (default: false)
channelId: string; // Confession will be send here
};
Users can make suggestions. Suggestions are voted on by users and then accepted or denied by staff.
Command | Description | Implemented |
---|---|---|
/suggest |
Make a suggestion | ❌ |
/suggestion |
Configure the suggestion module | ❌ |
Suggestion:
export enum SuggestionState {
Pending,
Accepted,
Denied
}
export type SuggestionDocument = {
_id: Types.ObjectId; // Mongoose unique Id
authorId: string; // Submitter
guildId: string; // Guild
channelId: string; // Suggestion channel
messageId: string; // Message sent to the suggestion channel
suggestion: string; // Text of the suggestion
upvotes: string[]; // User Ids that upvoted the suggestion
downvotes: string[]; // User Ids that downvotes the suggestion
state: SuggestionState; // State of the suggestion
reason?: string; // Optional reasoning after decline or accept
};
Module:
export type SuggestionConfigDocument = {
_id: Types.ObjectId; // Mongoose unique Id
guildId: string; // Guild this configuration is for
enabled: boolean; // Whether module is enabled or not (default: false)
channelId: string; // Suggestions will be send here
staffRoleId: string; // Role that can accept or deny suggestions
};