mirror of
https://github.com/Expand-sys/CCash
synced 2025-12-16 16:12:14 +11:00
Update idea.md
This commit is contained in:
parent
2f6579ea88
commit
2161482fdd
1 changed files with 13 additions and 11 deletions
24
docs/idea.md
24
docs/idea.md
|
|
@ -2,17 +2,17 @@
|
|||
|
||||
CCash is an external ledger for in-game economies, running on a webserver with a RESTful API, exceptionally fast and lightweight written in C++.
|
||||
|
||||
While CCash can be used for anything that can interact with its API I think minecraft is a good example.
|
||||
While CCash can be used for anything that can interact with its API I think minecraft is a good usecase.
|
||||
|
||||
The currency model most Minecraft Servers adopt if any, is resource based, usually diamonds, this model is fraught with issues however:
|
||||
The currency model most Minecraft Servers adopt if any, is resource based, usually diamonds. This model is fraught with issues however:
|
||||
|
||||
* the primary issue is minecraft worlds are infinite leading to hyper inflation as everyone accrues more diamonds
|
||||
* there is no central authority minting the currency, any consumer can introduce more diamonds to the system
|
||||
* some resources are passively reapable, making the generation of currency a larger focus then of products
|
||||
* locality is required for transaction
|
||||
* theft is possible, ownership is possession based
|
||||
* The primary issue is minecraft worlds are infinite leading to hyper inflation as everyone accrues more diamonds.
|
||||
* There is no central authority minting the currency. Any consumer can introduce more diamonds to the system.
|
||||
* Some resources are passively reapable, making the generation of currency a larger focus than that of creating products.
|
||||
* Locality is required for transactions.
|
||||
* Theft is possible; ownership is possession based.
|
||||
|
||||
CCash solves these issues and adds a level of abstraction, the main philosophy of CCash is to have fast core operations that other services build on.
|
||||
CCash solves these issues and adds a level of abstraction. The main philosophy of CCash is to have fast core operations which other services build on.
|
||||
|
||||
The CCash instance can be external to the game server.
|
||||
|
||||
|
|
@ -22,8 +22,10 @@ or on localhost:
|
|||
|
||||

|
||||
|
||||
Running it local to the game server reduces latency for ComputerCraft connected services, fortunately CCash is sufficiently lightweight as to not impact performance on most setups.
|
||||
Running it local to the game server reduces latency for connected services. Fortunately CCash is sufficiently lightweight as to not impact performance on most setups.
|
||||
|
||||
**DISCLAIMER: if you are to run it locally and want to use ComputerCraft with it, make sure to add `127.0.0.1` to ComputerCraft's config section `allowed_domains`**
|
||||
**DISCLAIMER: ComputerCraft requires you add `127.0.0.1` to its config section `allowed_domains` if you're interacting with CCash locally**
|
||||
|
||||
As CCash is just a means of keeping track of who has what, the economic system you use is self decided, ideally an admin should manage the instance to lower incentive to manipulate, as they concievably already have supreme power over the given game.
|
||||
As CCash is just a means of keeping track of who has what, the economic system you use is entirely up to whomever hosts the instance.
|
||||
|
||||
It's suggested an admin should manage the instance to lower incentive to manipulate.
|
||||
|
|
|
|||
Loading…
Reference in a new issue