I encountered a "heist ready" message yesterday, that wasn't on the wiki or in the mafia code at the time:
Also, a suggestion, always show both the charge counter and the heist counter on the charpane decoration (ideally in two lines).
Basically, remove the if/else and do something like this:
As progress is cleared at rollover, it's useful to know if you're close to another heist to bank for the next day.
cracks his knuckles and looks around for something steal
Also, a suggestion, always show both the charge counter and the heist counter on the charpane decoration (ideally in two lines).
Basically, remove the if/else and do something like this:
Code:
buffer.append( charge );
buffer.append( "/" );
buffer.append( minChargeCost );
buffer.append( " to heist<br>" );
buffer.append( heistsComplete );
buffer.append( "/" );
buffer.append( totalHeists + bankHeists );
buffer.append( " heists" );
As progress is cleared at rollover, it's useful to know if you're close to another heist to bank for the next day.