diff --git a/functions/fn_messages b/functions/fn_messages index 173b42c80..5855d3b95 100644 --- a/functions/fn_messages +++ b/functions/fn_messages @@ -2,7 +2,7 @@ # LGSM fn_messages function # Author: Daniel Gibbs # Website: http://gameservermanagers.com -# Version: 260115 +# Version: 091215 # Description: Defines on-screen messages such as [ OK ] and how script logs look. @@ -127,3 +127,12 @@ fn_printerror(){ fn_printerrornl(){ echo -e "\e[0;31mError!\e[0m $@" } + +# Info! +fn_printinfo(){ + echo -en "\e[0;36mInfo!\e[0m $@" +} + +fn_printinfonl(){ + echo -e "\e[0;36mInfo!\e[0m $@" +}