Browse Source

Added fn_printokeolnl and fn_printfaileolnl

pull/743/head
Daniel Gibbs 9 years ago
parent
commit
1e2ec54367
  1. 10
      functions/core_messages.sh

10
functions/core_messages.sh

@ -2,7 +2,7 @@
# LGSM fn_messages function
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
lgsm_version="271215"
lgsm_version="380216"
# Description: Defines on-screen messages such as [ OK ] and how script logs look.
@ -139,10 +139,18 @@ fn_printinfomationnl(){
# FAIL for end of line
fn_printokeol(){
echo -en "\e[0;32mOK\e[0m"
}
fn_printokeolnl(){
echo -e "\e[0;32mOK\e[0m"
}
# FAIL for end of line
fn_printfaileol(){
echo -en "\e[0;31mFAIL\e[0m\n"
}
fn_printfaileolnl(){
echo -e "\e[0;31mFAIL\e[0m\n"
}
Loading…
Cancel
Save