Browse Source

Added info message

pull/549/head
Daniel Gibbs 9 years ago
parent
commit
9ec7a4d8cc
  1. 11
      functions/fn_messages

11
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 $@"
}

Loading…
Cancel
Save