Add an option for single player death match against bots.
This commit is contained in:
parent
bfd0850c66
commit
47e0fd99f9
@ -119,7 +119,7 @@ case ${buttonCode} in
|
|||||||
--clear \
|
--clear \
|
||||||
--ok-label "Next" \
|
--ok-label "Next" \
|
||||||
--cancel-label "Exit" \
|
--cancel-label "Exit" \
|
||||||
--rangebox "Select Fraglimit" -1 -1 1 1000000 20 --stdout)"
|
--rangebox "Select Fraglimit" -1 -1 1 500 20 --stdout)"
|
||||||
[[ $? -eq 1 ]] && exit 0
|
[[ $? -eq 1 ]] && exit 0
|
||||||
# Get ip address
|
# Get ip address
|
||||||
yourIpAddress="$(curl -4s https://icanhazip.com)"
|
yourIpAddress="$(curl -4s https://icanhazip.com)"
|
||||||
@ -133,8 +133,16 @@ case ${buttonCode} in
|
|||||||
--clear \
|
--clear \
|
||||||
--ok-label "Start" \
|
--ok-label "Start" \
|
||||||
--cancel-label "Exit" \
|
--cancel-label "Exit" \
|
||||||
|
--extra-button \
|
||||||
|
--extra-label "Bots Only" \
|
||||||
--rangebox "Select difficulty. 1 easiest, 5 hardest." -1 -1 1 5 3 --stdout)"
|
--rangebox "Select difficulty. 1 easiest, 5 hardest." -1 -1 1 5 3 --stdout)"
|
||||||
[[ $? -eq 1 ]] && exit 0
|
code=$?
|
||||||
|
[[ $code -eq 1 ]] && exit 0
|
||||||
|
if [[ $code -eq 3 ]]; then
|
||||||
|
players=1
|
||||||
|
dialog --backtitle "Preparing to Launch" \
|
||||||
|
--msgbox "When the game starts, press \` to open the console. Type addbot, press enter. Repeat addbot for as many bots as you would like. Press \` again to close the console." -1 -1 --stdout
|
||||||
|
fi
|
||||||
flags=(
|
flags=(
|
||||||
'-host' "${players}"
|
'-host' "${players}"
|
||||||
'-skill' "${skillLevel}"
|
'-skill' "${skillLevel}"
|
||||||
|
Loading…
Reference in New Issue
Block a user