50% of donated capital to stock is used instead of 75%
This commit is contained in:
parent
e506c5264c
commit
23d8a3b4f9
@ -242,7 +242,7 @@ hook OnDialogResponse( playerid, dialogid, response, listitem, inputtext[ ] )
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
new
|
new
|
||||||
final_donation_amount = floatround( float( donation_amount ) * 0.75 );
|
final_donation_amount = floatround( float( donation_amount ) * 0.5 );
|
||||||
|
|
||||||
// contribute to earnings
|
// contribute to earnings
|
||||||
StockMarket_UpdateEarnings( stockid, final_donation_amount, .donation_amount = final_donation_amount );
|
StockMarket_UpdateEarnings( stockid, final_donation_amount, .donation_amount = final_donation_amount );
|
||||||
@ -885,7 +885,7 @@ static stock StockMarket_ShowDonationSlip( playerid, stockid )
|
|||||||
{
|
{
|
||||||
format(
|
format(
|
||||||
szLargeString, sizeof ( szLargeString ),
|
szLargeString, sizeof ( szLargeString ),
|
||||||
""COL_WHITE"Donations can be used to prop up %s's stock price.\n\n75%% of the money donated is distributed as dividends.\n\n"COL_ORANGE"You do not get any shares for donating to a company!",
|
""COL_WHITE"Donations can be used to prop up %s's stock price.\n\n50%% of the money donated is distributed as dividends.\n\n"COL_ORANGE"You do not get any shares for donating to a company!",
|
||||||
g_stockMarketData[ stockid ] [ E_NAME ]
|
g_stockMarketData[ stockid ] [ E_NAME ]
|
||||||
);
|
);
|
||||||
ShowPlayerDialog( playerid, DIALOG_STOCK_MARKET_DONATE, DIALOG_STYLE_INPUT, ""COL_WHITE"Stock Market", szLargeString, "Donate", "Back" );
|
ShowPlayerDialog( playerid, DIALOG_STOCK_MARKET_DONATE, DIALOG_STYLE_INPUT, ""COL_WHITE"Stock Market", szLargeString, "Donate", "Back" );
|
||||||
|
Loading…
Reference in New Issue
Block a user