diff --git a/main b/main index 7313388..9ef100c 100755 Binary files a/main and b/main differ diff --git a/main.cpp b/main.cpp index e5777a8..ef9a486 100644 --- a/main.cpp +++ b/main.cpp @@ -299,9 +299,10 @@ void withdraw() { cin >> withdraw_amount; if (balance >= withdraw_amount) { balance -= withdraw_amount; - bank_balance += withdraw_amount; + bank_balance += withdraw_amount * 0.76; system("clear"); - cout << "Deposit successful! Your new balance is: " << balance << " NyscoCoins" << endl; + cout << "Deposit successful! Your new bank balance is: " << bank_balance << "$ (after tax)" << endl; + cout << "Gambling is also taxed!" << endl; sleep(3); system("clear"); } @@ -328,9 +329,9 @@ void work() { system("clear"); cout << "\nWork done!" << endl; sleep(3); - int money_recieved = work_days * 20; - bank_balance += money_recieved; - cout << "\nYou recieved " << money_recieved << "$ for working " << work_days << " days." << endl; + int money_recieved = work_days * 120; + bank_balance += money_recieved * 0.88; + cout << "\nYou recieved " << money_recieved * 0.88 << "$ (after tax) for working " << work_days << " days." << endl; sleep(3); system("clear"); } @@ -362,7 +363,7 @@ int main() { cout << "(D) - Dice Roll" << endl; cout << "(H) - Higher or Lower (coming soon!)" << endl; cout << "--------------------" << endl; - cout << "(J) - Go To Work" << endl; + cout << "(J) - Go To Work (best option btw! don't gamble it's bad)" << endl; cout << "--------------------" << endl; cout << "(M) - Deposit Money" << endl; cout << "(W) - Withdraw NyscoCoins" << endl;