cash card sends a global msg

This commit is contained in:
Lorenc 2018-04-02 00:17:53 +10:00
parent 7dcfe85b83
commit 20e55bea91

View File

@ -80,7 +80,7 @@ thread OnPlayerRedeemCashCard( playerid, card_id, card_value )
// alert and give cash
GivePlayerCash( playerid, card_value );
SendServerMessage( playerid, "You have redeemed a "COL_GOLD"%s"COL_WHITE" cash card.", number_format( card_value ) );
SendClientMessageToAllFormatted( COLOR_GREY, "[SERVER]"COL_WHITE" %s(%d) has redeemed a "COL_GOLD"%s"COL_WHITE" cash card.", ReturnPlayerName( playerid ), playerid, number_format( card_value ) );
// insert into database
mysql_single_query( sprintf( "UPDATE `CASH_CARDS` SET `USES` = `USES` + 1 WHERE `ID`=%d", card_id ) );