beautify biz production command

This commit is contained in:
Lorenc Pekaj 2018-09-11 01:38:54 +10:00
parent 6c41d41d12
commit 3c58eb8523
2 changed files with 15 additions and 21 deletions

View File

@ -7873,21 +7873,19 @@ CMD:business( playerid, params[ ] )
foreach ( new businessid : business ) if ( g_businessData[ businessid ] [ E_OWNER_ID ] == p_AccountID[ playerid ] ) foreach ( new businessid : business ) if ( g_businessData[ businessid ] [ E_OWNER_ID ] == p_AccountID[ playerid ] )
{ {
format( szBigString, sizeof( szBigString ), "%s%s\t%s\t"COL_GOLD"%s\n", format( szBigString, sizeof( szBigString ), "%s%s\t%s\t"COL_GOLD"%s\n",
szBigString, szBigString, g_businessData[ businessid ] [ E_NAME ],
g_businessData[businessid][E_NAME],
g_businessData[ businessid ] [ E_PROD_TIMESTAMP ] != 0 ? (secondstotime( g_businessData[ businessid ] [ E_PROD_TIMESTAMP ] - g_iTime, ", ", 5, 0 ) ) : ( ""COL_GREEN"Production Finished!" ), g_businessData[ businessid ] [ E_PROD_TIMESTAMP ] != 0 ? (secondstotime( g_businessData[ businessid ] [ E_PROD_TIMESTAMP ] - g_iTime, ", ", 5, 0 ) ) : ( ""COL_GREEN"Production Finished!" ),
g_businessData[ businessid ] [ E_PRODUCT ] == 0 ? ( ""COL_RED"No Product!" ) : ( number_format( g_businessData[ businessid ] [ E_PRODUCT ] * GetProductPrice( businessid ) ) ) g_businessData[ businessid ] [ E_PRODUCT ] == 0 ? ( ""COL_RED"No Product!" ) : ( number_format( g_businessData[ businessid ] [ E_PRODUCT ] * GetProductPrice( businessid ) ) )
), has = true; ), has = true;
} }
if (!has) if ( ! has ) {
return SendError( playerid, "You cannot use this command since you don't own any businesses." ); return SendError( playerid, "You cannot use this command since you don't own any businesses." );
} else {
ShowPlayerDialog(playerid, DIALOG_NULL, DIALOG_STYLE_TABLIST_HEADERS, ""COL_WHITE"Business Production", szBigString, "Close", ""); return ShowPlayerDialog( playerid, DIALOG_NULL, DIALOG_STYLE_TABLIST_HEADERS, ""COL_WHITE"Business Production", szBigString, "Close", "" );
return 1;
} }
}
if ( strmatch( params, "spawn" )) else if ( strmatch( params, "spawn" ))
{ {
SendServerMessage( playerid, "We have changed the command to simply "COL_GREY"/spawn"COL_WHITE"." ); SendServerMessage( playerid, "We have changed the command to simply "COL_GREY"/spawn"COL_WHITE"." );
return ShowPlayerSpawnMenu( playerid ); return ShowPlayerSpawnMenu( playerid );

View File

@ -1,5 +1 @@
(+) You can now contribute to community crowdfunds using /crowdfunds. (+) Adds "/b production" to see what the status of your business production is.
(+) Added a command to reset gang respect without restarting the server.
(+) Adds /viewdeathmsg for level 1 admins to oversee any insulting messages.
(*) There can only be one boxing match at a time at the visage.
(/) Decreased amount of tax money put into random hits by 5%.