All Projects → SOF3 → Capital

SOF3 / Capital

Licence: Apache-2.0 license
An extensible economy API for PocketMine-MP.

Programming Languages

PHP
23972 projects - #3 most used programming language
Makefile
30231 projects

Projects that are alternatives of or similar to Capital

CommandShop
Players have to pay items or money to use specific commands! A PocketMine plugin.
Stars: ✭ 32 (+3.23%)
Mutual labels:  pocketmine, economy, pocketmine-plugins
BlockSniper
An advanced (brush) world editing plugin for PocketMine-MP
Stars: ✭ 77 (+148.39%)
Mutual labels:  pocketmine, pocketmine-plugins
devirion
Plugin used for debugging virions or plugins that use virions.
Stars: ✭ 35 (+12.9%)
Mutual labels:  pocketmine, pocketmine-plugins
Volt
A painless web server for PocketMine-MP
Stars: ✭ 24 (-22.58%)
Mutual labels:  pocketmine, pocketmine-plugins
Other-Plugins
A collection of all the plugins which I used to work on but no longer maintain
Stars: ✭ 26 (-16.13%)
Mutual labels:  pocketmine, pocketmine-plugins
fireworks
Adds Fireworks to Pocketmine
Stars: ✭ 17 (-45.16%)
Mutual labels:  pocketmine, pocketmine-plugins
LibSkin
Virion for working with player skins & PocketMine plugin for stealing other player's skins
Stars: ✭ 20 (-35.48%)
Mutual labels:  pocketmine, pocketmine-plugins
BuilderTools
🪓 Powerful World Editor plugin for PocketMine servers
Stars: ✭ 74 (+138.71%)
Mutual labels:  pocketmine, pocketmine-plugins
SAC
An AntiCheat software for PockeMine-MP made to detect unfair gamplay advantages.
Stars: ✭ 52 (+67.74%)
Mutual labels:  pocketmine, pocketmine-plugins
EggWars
EggWars minigame for PocketMine
Stars: ✭ 32 (+3.23%)
Mutual labels:  pocketmine, pocketmine-plugins
MineReset
Powerful mine resetting tool
Stars: ✭ 44 (+41.94%)
Mutual labels:  pocketmine, pocketmine-plugins
Specter
Super simple debugging for PocketMine.
Stars: ✭ 73 (+135.48%)
Mutual labels:  pocketmine, pocketmine-plugins
CosmeticMenu
Fun and Easy-to-Use Pocketmine Cosmetics plugin. (Gadgets, Particles, Trails, etc)
Stars: ✭ 22 (-29.03%)
Mutual labels:  pocketmine
Hydra
Very Simple Discord Economy Bot
Stars: ✭ 39 (+25.81%)
Mutual labels:  economy
ScoreFactory
A simple virion for making Scoreboards in Minecraft Bedrock Edition.
Stars: ✭ 15 (-51.61%)
Mutual labels:  pocketmine
HungerGames-UPDATED
A HungerGames plugin for PocketMine-MP developed by xBeastMode
Stars: ✭ 45 (+45.16%)
Mutual labels:  pocketmine-plugins
PiggyAuth
Safe & feature-rich auth plugin. Project has been discontinued
Stars: ✭ 33 (+6.45%)
Mutual labels:  pocketmine
TradeShop
Unique, new, powerful Minecraft TradeShop plugin!
Stars: ✭ 18 (-41.94%)
Mutual labels:  economy
Xakkit
Server Software for Minecraft
Stars: ✭ 27 (-12.9%)
Mutual labels:  pocketmine
HideAndSeek
Hide and seek game recreated for PocketMine-MP
Stars: ✭ 15 (-51.61%)
Mutual labels:  pocketmine

Capital

CI

An extensible economy plugin for PocketMine-MP.

How is Capital different from other economy plugins?

As a core API for economy, Capital supports different styles of account management:

  • You can have the old, simple one-account-per-player mechanism.
  • Or do you like currencies? You can add new currencies to config.yml and other plugins will let you configure which currency to use in each case.
  • Or are currencies too complicated for you? What about just having one account per world? You don't need any special configuration in other plugins!
  • Are commands and form UI boring for you? Maybe use banknote/wallet items so that players lose money when they drop the item? (Capital itself does not support banknote/wallet items, but it is the only economy API where both simple accounts and item payment can be used from other plugins without writing code twice)
  • Or maybe sometimes the money goes to the faction bank account instead of player account?
  • Capital is extensible for other plugins to include new account management styles, And it will work automatically with all plugins!

Other cool features include:

  • Powerful analytics commands. How much active capital is there? How is wealth distributed on the server? Which industries are the most active? What are the biggest transactions in the server yesterday? Capital can help you answer these questions with label-based analytics.
  • Is editing the config file too confusing for you? Capital supports self-healing configuration. Your config file will be automatically regenerated if something is wrong, and Capital will try its best to guess what you really wanted.
  • Supports migration from other economy plugins, including:
    • EconomyAPI
  • Uses async database access, supporting both SQLite and MySQL. Capital will not lag your server.
  • Safe for multiple servers. Transactions are strictly atomic. Players cannot duplicate money by joining multiple servers.

Setting up

After running the server with Capital the first time, Capital generates config.yml and db.yml, which you can edit to configure Capital.

db.yml is used for configuring the database used by Capital. You can use sqlite or mysql here. The configuration is same as most other plugins.

config.yml is a large config that allows you to change almost everything in Capital. Read the comments in config.yml for more information. Text after '# xxx: are comments. If you edit config.yml incorrectly, Capital will try to fix the config.yml and save the old one as config.yml.old so that you can refer to it if Capital fixed it incorrectly.

Default commands

All commands in Capital can be configured in config.yml. Try searching them in the config file to find out the correct place. The following commands come from the default config:

Player commands:

  • /pay <player> <amount> [account...]: Pay money to another player with your own account.
  • /checkmoney: Check your own wealth.
  • /richest: View the richest players on the server.

Admin commands:

  • addmoney <player> <amount> [account...]: Add money to a player's account.
  • takemoney <player> <amount> [account...]: Remove money from a player's account.
  • /checkmoney <player>: Check the wealth of another player.

[account...] can be used to select the account (e.g. currency) if you change the schema in config.yml. (You can still disable these arguments by setting up selector in config.yml)

You can create many other useful commands by editing config.yml, e.g. check how much money was paid by /pay command! Check out the comments in config.yml for more information.

Community, Contact & Contributing

If you want to get help, share your awesome config setup or show off your cool plugin that uses Capital, create a discussion on GitHub.

To report bugs, create an isuse on GitHub.

If you want to help with developing Capital, see dev.md for a comprehensive walkthrough of the internals.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].