Browse Source
The send command will appear for any game servers that support sending commands within the console i.e interactive console. Note: This is not rcon support Co-authored-by: Daniel Gibbs <[email protected]> Co-authored-by: DUDU54 <[email protected]>pull/3289/head
committed by
GitHub
6 changed files with 68 additions and 2 deletions
@ -0,0 +1,41 @@ |
|||||
|
#!/bin/bash |
||||
|
# LinuxGSM command_send.sh module |
||||
|
# Author: Daniel Gibbs |
||||
|
# Contributors: http://linuxgsm.com/contrib |
||||
|
# Website: https://linuxgsm.com |
||||
|
# Description: Send command to the server tmux console. |
||||
|
|
||||
|
commandname="SEND" |
||||
|
commandaction="Send" |
||||
|
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" |
||||
|
fn_firstcommand_set |
||||
|
|
||||
|
check.sh |
||||
|
if [ -z "${userinput2}" ]; then |
||||
|
fn_print_header |
||||
|
fn_print_information_nl "Send a command to the console." |
||||
|
fi |
||||
|
|
||||
|
check_status.sh |
||||
|
if [ "${status}" != "0" ]; then |
||||
|
if [ -n "${userinput2}" ]; then |
||||
|
commandtosend="${userinput2}" |
||||
|
else |
||||
|
echo "" |
||||
|
commandtosend=$( fn_prompt_message "send: " ) |
||||
|
fi |
||||
|
echo "" |
||||
|
fn_print_dots "Sending command to console: \"${commandtosend}\"" |
||||
|
tmux send-keys -t "${servicename}" "${commandtosend}" ENTER |
||||
|
fn_print_ok_nl "Sending command to console: \"${commandtosend}\"" |
||||
|
fn_script_log_pass "Command \"${commandtosend}\" sent to console" |
||||
|
else |
||||
|
fn_print_error_nl "Server not running" |
||||
|
fn_script_log_error "Failed to access: Server not running" |
||||
|
if fn_prompt_yn "Do you want to start the server?" Y; then |
||||
|
exitbypass=1 |
||||
|
command_start.sh |
||||
|
fi |
||||
|
fi |
||||
|
|
||||
|
core_exit.sh |
Loading…
Reference in new issue