Stonks Game is an exchange trading simulator. Here you should buy items and sell them at a new price. If your balance drops below 0, you lose. You win if you earn enough money depending on the current difficulty.
Also, there are several bots - little AIs which will mess you.
In the shared
folder, you can find game config, save, and other stuff. Feel free to edit these things as you wish, but remember, you have to remove save after every config change.
This project made for the "Educational practice on C++" course at Bauman Moscow State Technical University
Check the releases tab to catch the last release
Or, you can build project by yourself:
git clone https://github.com/ITesserakt/Stonks-game
cd Stonks-game
mkdir build
cmake -B . -S ..
make main
Here we go!
To run the game type this from build
folder:
cd bin
./main
You can also install the game to the specified location, just put -DCMAKE_PREFIX_PATH=...
like this: cmake -B . -S .. -DCMAKE_PREFIX_PATH=/home/
Linux
orMac OS
cmake >= 3.6
ncurses
- Internet connection (to download neccessary libs)
- C++ compiler with at least C++17 standard support
For more information, go to Github Pages