Theme editor

  • RequestStream Movies, TV shows and anime streaming • 1 week trial

LC COIN PSA: BANK INTEREST IS AT 2% ---- (YOU MUST MANUALLY COLLECT DAILY)

  • Thread starter Thread starter MILF
  • Start date Start date
  • Replies Replies 556
  • Views Views 31K
Well like everything else some abused it and now no one gets nothing.

It's just a deposit vault at this point, but it might change next year.
I'm 5k away from MVP+ thanks to humans & gambling at the slots.
if there was 2% interest I'd be there (or really close)
 
Yeah, the change is unfortunate since I lost all of my old information. Oh well, here we go again.
At least now the 2% is back, so you'll get there.
 
At least now the 2% is back, so you'll get there.
but its on a limited amount.
every method of making coins had been "nurfed" other than posting and getting likes.
 
but its on a limited amount.
every method of making coins had been "nurfed" other than posting and getting likes.
They were, too. Used to get more for that. But the what you can have in the bank was NUKED not nerfed.
 
They were, too. Used to get more for that. But the what you can have in the bank was NUKED not nerfed.
like the slots

Test Boom GIF
 
but its on a limited amount.
every method of making coins had been "nurfed" other than posting and getting likes.
Just get into a random chat with someone and like each other comments for a couple days xD
 
Just get into a random chat with someone and like each other comments for a couple days xD
I'm not in need of coins, gambling was good but that was murdered.
now you are guaranteed to loose every coin you have, they even removed you from seeing how many coins you have & they even remove coins from the bank if you go beyond the coins in your pocket.
it used to stop when you ran out of coins in your pocket.

You must be registered to see attachments
 

Attachments

You must be registered for see attachments list
I'm not in need of coins, gambling was good but that was murdered.
now you are guaranteed to loose every coin you have, they even removed you from seeing how many coins you have & they even remove coins from the bank if you go beyond the coins in your pocket.
it used to stop when you ran out of coins in your pocket.

You must be registered to see attachments
And here i am trying to get 250 together :') I didnt even know there was a gambling thing?
 
I'm not in need of coins, gambling was good but that was murdered.
now you are guaranteed to loose every coin you have, they even removed you from seeing how many coins you have & they even remove coins from the bank if you go beyond the coins in your pocket.
it used to stop when you ran out of coins in your pocket.

You must be registered to see attachments
Thats why I avoid gambling in general, IRL and in other situations.
 
It would be nice if interest was deposited into the interest-bearing account first and then the rest into the vault.
 
It would be nice if interest was deposited into the interest-bearing account first and then the rest into the vault.
than it would have to split it into two parts
its simple math to do it manually
 
than it would have to split it into two parts
its simple math to do it manually
I don't think the code logic would be hard, it already has to calculate how much you can put in to the main account when depositing so just reuse that and subtract it from the amount of interest generated. Or if it needs to be done as separate transactions put the interest in the secondary vault and then transfer up to the interest amount into the main account. Doing it manually is just extra work for no reason.
 
I don't think the code logic would be hard, it already has to calculate how much you can put in to the main account when depositing so just reuse that and subtract it from the amount of interest generated. Or if it needs to be done as separate transactions put the interest in the secondary vault and then transfer up to the interest amount into the main account. Doing it manually is just extra work for no reason.
looks like we have a code writing volunteer.


Volunteer Saskatoon GIF by CharlieClark2020
 
looks like we have a code writing volunteer.


Volunteer Saskatoon GIF by CharlieClark2020
There might be a mistake in here but I'm half asleep.

JavaScript:
let remaining = usr.bank.maximum - usr.bank.amount;
let interest = usr.bank.amount * .02;
if (remaining >= interest){
    usr.bank.deposit(interest);
} else {
    usr.bank.deposit(remaining);
    usr.vault.deposit(interest - remaining);
}
display('capitalismho.png')
 
Oh to be rich is like living at ease. If only auto collect wasn't disabled then I could have had an extra to waste. 😅
 
Back
Top Bottom